一、position:fixed
锁定位置(相对于浏览器的位置),例如有些网站的右下角的弹出窗口。
二、position:absolute
绝对位置:
1.外层没有position:absolute(或relative);那么p相对于浏览器定位,如下图中b(距离浏览器右边框为50像素,距离下边框为20像素)。
2.外层有position:absolute(或relative);那么p相对于外层边框定位,如下图中bb(距离d的右边框50像素,距离d的下边框为20像素)。
三、position:relative
相对位置:
如下图,相对于把此p包含住的p的某个位置进行固定。如果外层没有包含他的,那就相对于浏览器进行相对位置的固定。
四、分层(z-index)
在z轴方向分层,可以理解为分成一摞纸,层数越高越靠上。
在上面relative的示例中,我们看到了aa遮住了a,这是因为后写代码的显示级别越靠前,那么在不改变代码顺序的情况下如何让a盖住aa。如下:
五、float:left、right
Left、right时不用给他规定位置(left、top),直接相对于浏览器。若外部被包裹,相对于外部p的除去一行的位置的左上或右上显示。
附加:1、
overflow:hidden; //超出部分隐藏;scroll,显示出滚动条; /p //截断流
2、cursor:pointer 鼠标指到上面时的形状;
3、半透明效果:
p >!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns= http://www.w3.org/1999/xhtml head meta http-equiv= Content-Type content= text/html; charset=utf-8 / title 无标题文档 /title style type= text/css border:5px solid blue; width:1000px; height:100px; margin:10px; left:150px; top:80px; position:absolute;} border:5px solid blue; width:240px; height:200px; margin:10px; left:150px; top:200px; position:absolute;} border:5px solid blue; width:740px; height:300px; margin:10px; left:410px; top:200px; position:absolute;} border:5px solid blue; width:740px; height:200px; margin:10px; left:410px; top:520px; position:absolute;} border:5px solid blue; width:240px; height:1500px; margin:10px; left:150px; top:420px; position:absolute;} border:5px solid blue; width:240px; height:150px; margin:10px; left:150px; top:1940px; position:absolute;} border:5px solid blue; width:740px; height:1350px; margin:10px; left:410px; top:740px; position:absolute;} border:5px solid blue; width:1000px; height:200px; margin:10px; left:150px; top:2110px; position:absolute;} border:5px solid blue; width:1000px; height:200px; margin:10px; left:150px; top:2330px; position:absolute;} /style /head body bgcolor= #F0F0F0 p >相信看了这些案例你已经掌握了方法,更多精彩请关注php 其它相关文章!
相关阅读:
HTML Form表单元素的详解
HTML文本格式化的实例详解
html的特殊字符-css3 content: 特殊符号 应该如何使用
以上就是HTML的基础知识.关于css样式表和样式属性的详细介绍的详细内容,html教程
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。
新闻热点
疑难解答