Rumah > Artikel > hujung hadapan web > css fixed是什么意思
fixed的意思为“固定”,是css position属性的属性值,可以使元素固定,而被固定的元素不会随着滚动条的拖动而改变位置。在视野中,固定定位“position:fixed”的元素的位置是不会改变的。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
fixed是position属性的属性值。当元素的position属性设置为fixed时,这个元素就被固定了,被固定的元素不会随着滚动条的拖动而改变位置。在视野中,固定定位的元素的位置是不会改变的。
fixed固定定位和absolute绝对定位比较类似,它们都能够让元素产生位移,并且脱离文档流。
语法:
position:fixed; top:像素值; bottom;像素值; left:像素值; right:像素值;
“position:fixed;”是结合top、bottom、left和right这4个属性一起使用的,其中“position:fixed;”使得元素成为固定定位元素,接着使用top、bottom、left和right这4个属性来设置元素相对浏览器的位置。
top、bottom、left和right这4个属性不一定全部都用到。注意,这4个值的参考对象是浏览器的4条边。
示例:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style type="text/css"> h2.pos_abs { position: fixed; left: 100px; top: 120px } p{ height: 100px; background-color: palegoldenrod; } p.p2{ margin-top:120px ; } </style> </head> <body style="height: 1200px;"> <h2 class="pos_abs">这是带有固定定位的标题</h2> <p>相对于浏览器窗口来对元素进行定位</p> <p class="p2">相对于浏览器窗口来对元素进行定位</p> </body> </html>
效果图:
(学习视频分享:css视频教程)
Atas ialah kandungan terperinci css fixed是什么意思. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!