作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个代码:
<div class="container my-container">
<div class="row">
<div class="col-md-4"><div class="c-sin"><h1><span class="glyphicon glyphicon-heart"></span></h1>"TEXT"</div></div>
<div class="col-md-4"><div class="c-cen"><h1><span class="glyphicon glyphicon-user"></span></h1>"TEXT"</div></div>
<div class="col-md-4"><div class="c-des"><h1><span class="glyphicon glyphicon-inbox"></spa n></h1>"TEXT"</div></div>
</div>
</div>
.c-sin {
border-right: 1px solid #DADADA;
padding-right: 10%;
}
.c-cen {
border-right: 1px solid #DADADA;
padding-right: 10%;
}
最佳答案
我使用 SASS 创建了一个新类:
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-down($breakpoint) {
.border-#{$breakpoint}-left-none {
border-left:none !important;
}
.border-#{$breakpoint}-right-none {
border-right:none !important;
}
.border-#{$breakpoint}-top-none {
border-top:none !important;
}
.border-#{$breakpoint}-bottom-none {
border-bottom:none !important;
}
}
}
@media (max-width: 575.98px) {
.border-xs-left-none {
border-left: none !important; }
.border-xs-right-none {
border-right: none !important; }
.border-xs-top-none {
border-top: none !important; }
.border-xs-bottom-none {
border-bottom: none !important; } }
@media (max-width: 767.98px) {
.border-sm-left-none {
border-left: none !important; }
.border-sm-right-none {
border-right: none !important; }
.border-sm-top-none {
border-top: none !important; }
.border-sm-bottom-none {
border-bottom: none !important; } }
@media (max-width: 991.98px) {
.border-md-left-none {
border-left: none !important; }
.border-md-right-none {
border-right: none !important; }
.border-md-top-none {
border-top: none !important; }
.border-md-bottom-none {
border-bottom: none !important; } }
@media (max-width: 1199.98px) {
.border-lg-left-none {
border-left: none !important; }
.border-lg-right-none {
border-right: none !important; }
.border-lg-top-none {
border-top: none !important; }
.border-lg-bottom-none {
border-bottom: none !important; } }
.border-xl-left-none {
border-left: none !important; }
.border-xl-right-none {
border-right: none !important; }
.border-xl-top-none {
border-top: none !important; }
.border-xl-bottom-none {
border-bottom: none !important; }
关于twitter-bootstrap - 使用 Bootstrap 隐藏超小型设备的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23583713/
我是一名优秀的程序员,十分优秀!