我有以下DIV:CSS屬性的變化都沒有響應
<div class="order-data col-xs-2 col-md-3">
在CSS文件中,這個div的屬性有以下幾條:
div.container>div.container-striped>div.row>div.order-data {
min-height: 30px;
line-height: 4em;
line-height: 20px;
}
我改變順序數據的屬性這個:
div.container>div.container-striped>div.row>div.order-data{
min-height: 30px;
line-height: 20px;
text-align: center;
}
我正在保存它,但是當我重新加載頁面時,更改沒有響應。那是什麼?
請你能不能重現該問題在簡單的小提琴? – fcalderan
嗨,不,我不能,CSS太長 – nandophillips
如果你的HTML看起來像這個小提琴一樣的工作:http://jsfiddle.net/dw2u3/ – caramba