溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

css的三種定位方式是什么

發(fā)布時(shí)間:2021-11-02 13:01:39 來源:億速云 閱讀:155 作者:柒染 欄目:web開發(fā)

本篇文章為大家展示了css的三種定位方式是什么,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

css的三種定位方式是:1、相對(duì)定位,元素的位置相對(duì)于它的原始位置計(jì)算而來,語法“position:relative;”;2、固定定位,語法“position:fixed;”;3、絕對(duì)定位,語法“position:absolute;”。

本教程操作環(huán)境:windows7系統(tǒng)、CSS3&&HTML5版、Dell G3電腦。

相對(duì)定位

該元素的位置是相對(duì)于它的原始位置計(jì)算而來的。

position:relative;

他是默認(rèn)參照父級(jí)的原始點(diǎn)為原始點(diǎn),配合top、right、bottom、left進(jìn)行定位。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>相對(duì)定位</title>
<style type="text/css">
.king{
margin-top: 30px;
margin-left: 30px;
border: 1px solid silver;
background-color: skyblue;
width: 40%;
}
.king div{
width: 100px;
height: 60px;
margin: 10px;
background-color: snow;
color: black;
border: 1px solid black;
}
.three{
position: relative;
top: 20px;
left: 50px;
}
</style>
<body>
<div class="king">
<div class="one">one</div>
<div class="two">two</div>
<div class="three">three</div>
<div class="four">four</div>
</div>
</body>
</html>

固定定位

被固定的元素不會(huì)隨著滾動(dòng)條的拖動(dòng)而改變位置。

position:fixed;

在默認(rèn)情況下,固定定位元素的位置是相對(duì)瀏覽器而言,結(jié)合top、bottom、left和right這4個(gè)屬性一起使用。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>固定定位</title>
<style type="text/css">
.first{
width: 50px;
height: 160px;
border: 1px solid gray;
background-color: #b7f1b7;
}
.second{
position: fixed;
top: 50px;
left: 160px;
width: 150px;
height: 100px;
border: 1px solid silver;
background-color:#b7f1b7;
}
</style>
<body>
<div class="first">div元素</div>
<div class="second">固定定位的div元素</div>
</body>
</html>

絕對(duì)定位

position:absolute;

默認(rèn)情況下,絕對(duì)定位的位置是相對(duì)于瀏覽器而言,配合top、right、bottom、left進(jìn)行定位。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>絕對(duì)定位</title>
<style type="text/css">
.king{
padding: 15px;
border: 1px solid silver;
background-color: skyblue;
width: 30%;
}
.king div{
padding: 10px;
}
.one{
background-color: chartreuse;
}
.two{
background-color: cyan;
position: absolute;
top: 20px;
right: 40px;
}
.three{
background-color: darkred;
}
.four{
background-color: dimgrey;
}
</style>
<body>
<div class="king">
<div class="one">one</div>
<div class="two">two</div>
<div class="three">three</div>
<div class="four">four</div>
</div>
</body>
</html>

z-index

z-index 屬性設(shè)置元素的堆疊順序。擁有更高堆疊順序的元素總是會(huì)處于堆疊順序較低的元素的前面。

  • 元素可擁有負(fù)的 z-index 屬性值。

  • Z-index 僅能在定位元素上奏效(例如 position:absolute;)

屬性值: auto:默認(rèn),堆疊順序與父元素相等。 number:設(shè)置元素的堆疊順序。 inherit:規(guī)定應(yīng)該從父元素繼承 z-index 屬性的值。

例: 設(shè)置圖像的 z-index:

img{
position:absolute;
left:0px;
top:0px;
z-index:-1;
}

上述內(nèi)容就是css的三種定位方式是什么,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI