溫馨提示×

溫馨提示×

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

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

css中bottom屬性如何使用

發(fā)布時間:2020-09-24 09:49:14 來源:億速云 閱讀:138 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細講解有關(guān)css中bottom屬性如何使用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

css bottom屬性用于規(guī)定元素的底部邊緣,該屬性定義了定位元素下外邊距邊界與其包含塊下邊界之間的偏移。如果 "position" 屬性的值為 "static",那么設(shè)置 "bottom" 屬性不會產(chǎn)生任何效果。

css bottom屬性怎么用?

作用:bottom 屬性規(guī)定元素的底部邊緣。

說明:該屬性定義了定位元素下外邊距邊界與其包含塊下邊界之間的偏移。如果 "position" 屬性的值為 "static",那么設(shè)置 "bottom" 屬性不會產(chǎn)生任何效果。

注釋:所有主流瀏覽器都支持 bottom 屬性。任何的版本的 Internet Explorer (包括 IE8)都不支持屬性值 "inherit"。

css bottom屬性使用示例

<html>
<head>
<style type="text/css">
img.ex1
{
position:absolute;
bottom:0px;
}
img.ex2
{
position:relative;
bottom:-100px;
}
</style>
</head>
<body>
<img class="ex1" src="https://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" />
<h2>This is a heading</h2>
<img class="ex2" src="https://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" />
</body>
</html>

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

向AI問一下細節(jié)

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

AI