gpt4 book ai didi

html - CSS:将边框设置为半宽

转载 作者:技术小花猫 更新时间:2023-10-29 12:22:40 26 4
gpt4 key购买 nike

考虑以下内容:

<div class="box">
...
</div>

.box{
width:500px;
border-bottom: 1px solid #ccc;
}

它将设置框的全宽底部边框 (500px)。但是我不想将边框底部设置为整个宽度,而是想在框底部的中间设置 300px,我应该怎么做..

最佳答案

您可以使用::after 或::before 伪选择器。喜欢:

<div> something here </div>

CSS:

div {
width: 500px;
height: 100px;
position: relative;
padding-top: 20px;
margin-top: 50px;
}

div::before {
content: '';
display: block;
position: absolute;
top: 0;
width: 50%;
left: 25%;
border-top: 1px solid red;
}

这是 jsfiddle

关于html - CSS:将边框设置为半宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8808099/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com