Вопрос

I am using Jquery Mobile´s grid and I want to remove the default border and change the default background-color. Here is my code:

   <div class="ui-grid-b">
    <div class="ui-block-a"><div class="ui-bar ui-bar-a" style="height:60px">Block A</div></div>
    <div class="ui-block-b"><div class="ui-bar ui-bar-a" style="height:60px">Block B</div></div>
</div><!-- /grid-b -->

Thank you

Это было полезно?

Решение

The answer is

.ui-bar-a {
background-color: #FFFFFF;
border-style: none; 
}

Другие советы

Try this:

.ui-bar-a {
background-color: #fff !important;
border-style: none !important;
}

!important helps to override the jquery mobile css.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top