我是CSS的新手。我正在使用Twenty template,当我将屏幕设置得很窄时,中间的灰色框会消失。我知道它的意思是这样,因为它的反应灵敏,但我怎么能改变这种行为呢?
我想调整这种消失的宽度。我怀疑它在CSS代码的这一部分的某处:
#banner .inner {
-moz-animation: reveal-banner 1s 0.25s ease-in-out;
-webkit-animation: reveal-banner 1s 0.25s ease-in-out;
-o-animation: reveal-banner 1s 0.25s ease-in-out;
-ms-animation: reveal-banner 1s 0.25s ease-in-out;
animation: reveal-banner 1s 0.25s ease-in-out;
-moz-animation-fill-mode: forwards;
-webkit-animation-fill-mode: forwards;
-o-animation-fill-mode: forwards;
-ms-animation-fill-mode: forwards;
animation-fill-mode: forwards;
background: rgba(20, 20, 20, 0.90); /*color y opacidad de la caja oscura en home */
color: white;
display: inline-block;
opacity: 0;
padding: 3em;
text-align: center;
}
答案 0 :(得分:1)
@media screen and (max-width: 736px)
中):
#banner .inner {
background: none;
display: block;
padding: 0 1.5em;
}
所以基本上上面代码的作用是:
background
.inner
display:block
视口
.inner
部分padding
,最有可能
文字不是"触摸"视口的边缘。