質問

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