1
我想使用滾動條來水平滾動到預測。在引導程序中使用滾動窗格並覆蓋CSS
我已經更新了我的文件,並在我的css
文件夾名稱bootstrap_and_customization.css
下保存它:
@import 'bootstrap';
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
#Forecast ul {
float: left;
width: 100%;
padding: 0;
margin: 0;
list-style-type: none;
white-space: nowrap;
}
#Forecast ul li div {
float: left;
text-decoration: none;
color: white;
background-color: purple;
padding: 0.2em 0.6em;
border-right: 1px solid white;
white-space: nowrap;
}
#Forecast ul li a:hover {
background-color: fuchsia;
}
#Forecast ul li {
display: inline;
/*width: 6em;*/
white-space: nowrap;
}
.border {
border: 1px solid #00ced1;
}
我已經添加了white-space: nowrap;
屬性,我的元素和代碼本身:
<asp:Panel ID="pForecast" ScrollBars="Horizontal" runat="server">
<div id="Forecast" class="nowrap">
<ul class="nowrap">
<li class="nowrap"><a>current</a></li>
<li class="nowrap"><a>1h later</a></li>
<li class="nowrap"><a>2h later</a></li>
<li class="nowrap"><a>tomorrow</a></li>
<li class="nowrap"><a>tomorrow and later</a></li>
<li class="nowrap"><a>even later</a></li>
</ul>
</div>
</asp:Panel>
爲class="nowrap"
的標記:
.nowrap {
white-space: nowrap;
}
當我運行代碼它看起來像這樣:
我也使用了bootsrap框架和相當多的其他樣式。是否有可能重置他們爲我的div Forecast
並只使用我定義的樣式?
感謝您的幫助!
當我創建的文件,並將其鏈接到我的網頁它說,該文件未找到(404)。當我將它重命名爲'.css'時,它可以正常工作但沒有任何變化,這些元素仍然不在滾動窗格中 – Hack4Life
ok,你可以編輯你的文章並添加你創建的新文件以及鏈接'.css'文件的頁面。 – Cyzanfar
完成@Cyzanfar 我有本地保存的引導文件,有沒有區別? – Hack4Life