CSS:当屏幕太窄时,避免组件消失

时间:2015-07-18 02:18:35

标签: html css html5 responsive-design

我是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;
}

1 个答案:

答案 0 :(得分:1)

它并没有消失。它只会添加此内容(在"移动"媒体查询@media screen and (max-width: 736px) 中):

#banner .inner {
  background: none;
  display: block;
  padding: 0 1.5em;
}

所以基本上上面代码的作用是:

  • 删除background
  • "扩展"使用.inner
  • display:block视口
  • 适用于左侧和右侧的.inner部分padding,最有可能 文字不是"触摸"视口的边缘。