首頁  >  文章  >  web前端  >  CSS position屬性中absolute這個屬性是做什麼用的?

CSS position屬性中absolute這個屬性是做什麼用的?

怪我咯
怪我咯原創
2017-06-22 10:20:073420瀏覽

css定位參數:position、left、right、top、bottom

參數說明:
absolute參數用來指定方塊的定位方式,top、bottom、left、right分別指定方塊的上下左右座標。
參數值說明。


########################## ######relative:相對定位###############static:靜態定位############範例程式碼:######
<!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>
<title>示例网页</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style>
.c1{
    width:200px;
    height:150px;
    line-height:75px;
    text-align:center;
    border:1px solid #909;
    position:absolute;
    top:50px;
    left:50px;
}
</style>
</head>
<body>
<div class="c1">
本方块宽200px,高150px,绝对定位于上边50px,左边50px
</div>
</body>
</html>

以上是CSS position屬性中absolute這個屬性是做什麼用的?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn