如何在carousel元素标记p中添加媒体查询

时间:2015-06-28 21:24:42

标签: html css twitter-bootstrap media-queries

如何在carousel元素标记p.My代码

中添加媒体查询
<span><strong><p class="text-center">Aktuelnosti u proizvodnji malina</p></strong></span>
@media only screen and (max-width: @screen-xs-max){
  .text-center p{color: red;font-size:11px;}

但不适用于320px媒体屏幕的媒体查询。

1 个答案:

答案 0 :(得分:1)

你的css风格有错误。
你想选择一个带有类#34;文本中心&#34的段落;
所以正确的方法是:

@media only screen and (max-width: @screen-xs-max) {
    p.text-center {
        color: red;
        font-size: 11px !important;
    }
}