div {
margin: 0 auto;
border: 5px solid orange;
width: 60%;
font-family: Verdana;
}
.game {
border: 5px solid black;
width:30%; margin:0 auto;
position: absolute;
left: 0;
right: 0;
padding: 0 20px;
}

<div>
<div class="game">
test
</div>
</div>
&#13;
问题:输出只包含单词&#34; SMALL&#34;无论屏幕有多宽。
我觉得我错过了一些明显的东西,但对于我的生活,我无法弄清楚它是什么。
答案 0 :(得分:5)
请勿使用//
在CSS中发表评论..
使用/*..*/
http://www.codeply.com/go/uMSHCzymw3
.small_only {
display: block;
}
.large_only {
display: none;
}
/* === Media Queries === */
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.small_only {
display: none;
}
.large_only {
display: block;
}
}
<强> 修改 强>