gpt4 book ai didi

css - 从屏幕左侧到居中 div 末端的线

转载 作者:太空狗 更新时间:2023-10-29 14:44:05 24 4
gpt4 key购买 nike

我想从屏幕左侧到居中的 div 末端制作一条 1 px 的线。divmargin: auto; 为中心。

这张图片显示了它的外观:

example

最佳答案

这是一个使用 calc 的例子:

.box{
width:200px;
height:200px;
border:1px solid blue;
margin:0 auto;
}

.line{
border: 1px solid red;
width: calc(((100% - 200px)/2) + 200px);
}

JSFiddle

Browser support

关于css - 从屏幕左侧到居中 div 末端的线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17917071/

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