给父级元素加边框可以触发bfc吗
发布网友
发布时间:2022-05-24 04:45
我来回答
共1个回答
热心网友
时间:2024-10-30 02:15
消除边框的有几种,如下:
此为消除标签元素自带的一些边距:<pre t="code" l="html">margin:0; padding:0;此为消除标签元素自带的一些边线:<pre t="code" l="html">border:none;
border-left:none;//消除左边线
border-right:none;//消除右边线
border-top:none;//消除上边线
border-bottom:none;//消除下边线像图片中的样式要利用层级关系,让大框在小框下面被遮挡,再消除小框架的右边线:
<pre t="code" l="html">.a{ width:100px; height:100px; background-color:#eee; position:relative; border:1px solid #ff0707; border-right:none; margin-top:300px; }
.b{ width:300px; height:300px; z-index:-1; background-color:#eee; position:absolute; left:99px; top:-100px; border:1px solid #ff0707; }