1、跳出新页面: <basetarget=”_blank”>target="_self"不跳转 <form action="xxx.htm" target="_blank">form表单提交的跳转设置 2、点击按钮跳出别的页面添加 <a href="#" onclick="openZoosUrl();return false;"> onclick="return false" 3、display:block;块级元素,也就是说它可以设置一些宽高,独占一行,比如,div元素,p元素等display:inline-block,行级元素,也就说它可以使得同样设置成行级元素的元素一起在一行,然后可以设置宽高,这个适应于制作一个导航菜单,将每个菜单项设置成行级元素。它的宽和高默认是内容的宽和高,典型的元素是表单类的元素。dispaly:inline.行级元素,不可设置宽和高,默认宽高是内容的宽和高,典型的比如,span, 4、html鼠标小手: cursor:pointer; 5、html背景图属性: background-size:100%;,但是你的图片宽度,高度要设置成100% ,要注意的是.php的文件里面这个background-image:url();不好用,失效,你要使用网站的绝对路径background:url('/20151106/404/image/404.webp') no-repeat 4px 5px;}background:url("11111.webp");background-repeat:no-repeat;background-size:100%;width:100%;height:100%; 这个是给页面加背景的body{padding: 0px;margin: 0px;background-color:#494949;width:100%;height:100%;}. 还有在设置背景图片的时候可以使用背景background-image:url("");这个属性来设置背景,但是图片要用gif的格式 6、按输出方式来显示文本格式:<pre></pre>横线:<hr /><q></q>双引号标签下划线<ins></ins>
|