您好,登錄后才能下訂單哦!
小編給大家分享一下怎么用CSS在div元素內(nèi)放置邊框,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
答:使用CSSbox-shadow屬性
如果要在矩形框內(nèi)放置或繪制邊框,則有一個(gè)非常簡(jiǎn)單的解決方案-只需使用CSS outline屬性而不是border,并使用outline-offset具有負(fù)值的CSS3屬性將其移動(dòng)到元素框內(nèi)即可。
但是,此解決方案不適用于圓角元素。但是,您仍然可以使用該box-shadow屬性通過(guò)一些技巧在圓形框或帶有圓角的元素內(nèi)繪制邊框。
讓我們看下面的示例,以了解其基本工作原理:
例試試這個(gè)代碼»
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Setting Border inside DIV Element</title>
<style>
.box {
width: 180px;
height: 180px;
background: black;
margin: 20px 50px;
}
.circle {
border-radius: 50%;
}
.inner-border {
border: 20px solid black;
box-shadow: inset 0px 0px 0px 10px red;
box-sizing: border-box; /* Include padding and border in element's width and height */
}
/* CSS3 solution only for rectangular shape */
.inner-outline {
outline: 10px solid red;
outline-offset: -30px;
}
</style>
</head>
<body>
<h3>Border inside Rectangular and Circular Shape</h3>
<div class="box circle inner-border"></div>
<div class="box inner-border"></div>
<hr>
<h3>Outline Inside Rectangular Shape</h3>
<div class="box inner-outline"></div>
</body>
</html>
看完了這篇文章,相信你對(duì)“怎么用CSS在div元素內(nèi)放置邊框”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(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)容。