css – 从屏幕左侧到居中div结束的行

前端之家收集整理的这篇文章主要介绍了css – 从屏幕左侧到居中div结束的行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从屏幕左侧到居中div的末尾制作1 px线.
div以margin为中心:auto;.

此图显示了它应该如何显示

解决方法

这是另一个解决方案,它是跨浏览器 http://jsfiddle.net/9qrSy/3
<div class="inner"></div>
<div class="wrapp"></div>

css 



   body {
    padding:8px;
}
div.wrapp {
    width:300px;
    height:300px;
    border:2px solid green;
    margin:auto;
    position:relative;
}
div.wrapp:before {
    content:'';
    position:absolute;
    width:100%;
    height:1px;
    right:0;
    top:-6px;
    background:blue;
    z-index:1;

}
.inner {
    width:50%;
    float:left;
    position:absolute;
    height:1px;
    left:0;
    top:12px;
     background:blue;


}
原文链接:https://www.f2er.com/css/214790.html

猜你在找的CSS相关文章