溫馨提示×

溫馨提示×

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

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

css中怎么使用相對定位

發(fā)布時間:2021-06-25 15:49:07 來源:億速云 閱讀:139 作者:Leah 欄目:web開發(fā)

這篇文章給大家介紹css中怎么使用相對定位,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

一.基本概念:

顧名思義,此種定位是相對某一個對象進(jìn)行的偏移,相對定位并不能使對象脫離文檔流,盡管它的位置可能產(chǎn)生偏移,但是對象初始位置仍然會被保留。
如果要真正掌握此種定位方式,搞清楚需相對于哪個對象進(jìn)行偏移是關(guān)鍵點(diǎn)。

二.如何將一個元素設(shè)置為相對定位:

當(dāng)一個對象的position屬性值被設(shè)置為relative的時候就會發(fā)生相對定位:

代碼如下:


position:relative

三.定位參考對象:

可以使用top屬性和left屬性設(shè)置相對定位對象的偏移量。
相對定位的偏移參考對象是此對象本身。

代碼實例:
首先看一個沒有使用定位的代碼實例:

代碼如下:


<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="" />
<title>CSS相對定位-螞蟻部落</title>  
<style type="text/css">  
.father{  
 width:400px;  
 height:400px;  
 background-color:green;  
 margin:50px;  
}  
.first{  
 width:100px;  
 height:100px;  
 background-color:red  
}  
.second{  
 width:100px;  
 height:100px;  
 background-color:blue  
}  
</style>  
</head>  
<body>  
<div class="father">  
 <div class="first"></div>  
 <div class="second"></div>  
</div>  
</body>  
</html>

在以上代碼中,所有的對象都沒有采用相對定位,這里無須多介紹了。

再來看一段采用相對定位的代碼:

代碼如下:


<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="" />
<title>CSS相對定位</title>  
<style type="text/css">  
.father{  
 width:400px;  
 height:400px;  
 background-color:green;  
 margin:50px;  
}  
.first{  
 width:100px;  
 height:100px;  
 background-color:red;  
 position:relative;  
 left:20px;  
 top:30px;  
}  
.second{  
 width:100px;  
 height:100px;  
 background-color:blue  
}  
</style>  
</head>  
<body>  
<div class="father">  
 <div class="first"></div>  
 <div class="second"></div>  
</div>  
</body>  
</html>

關(guān)于css中怎么使用相對定位就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

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

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

css
AI