如何在小设备中div间添加边框而不影响大设备
答
<div class="col-sm-6">
<div class="box">
...
</div>
</div>
<div class="col-sm-6">
<div class="box">
...
</div>
</div>
<style>
/*Desktop*/
.box{ border-right:#000 solid 1px;}
/*Small Screen - below 768 resolution device*/
@media only screen and (max-width: 768px){
.box{border-right:none; border-bottom:#000 solid 1px; margin-bottom:20px;}
}
</style>
答
你应该添加媒体查询到小型设备
@media only screen and (max-width: 300px)
{
your div name
{
border-style: solid;
border-bottom: thick dotted #ff0000;
}
}
答
<div class="col-sm-6">
<div class="box">
...
</div>
</div>
<div class="col-sm-6">
<div class="box">
...
</div>
</div>
<style>
.box{ border-right:#000 solid 1px;}
/*Small Screen - below 768 resolution device*/
@media only screen and (max-width: 768px){.box{border-right:none; border-bottom:#000 solid 1px; margin-bottom:20px;}}
</style>
欢迎使用stackoverflow。请编辑你的问题,下面:https://stackoverflow.com/help/how-to-ask。它没有意义。 –