我使用mvc5與剃刀viewengine和引導 我想成爲一些圖像居中,當我使用Boostrap.css中心不工作,但是當我刪除bootstrap.css它工作正常。我用bootsrtap text center class
,但它不工作太:/ http://jsfiddle.net/9h5rvgLc/引導不要讓我中心div
-2
A
回答
1
使用.img-responsive{ margin:0px auto}
可能對你有用
1
嘗試增加display: block; margin: 10px auto
到style
屬性。這將以div
爲中心。我已經更新了演示的jsfiddle,link。
<div>
<div style="margin-top: 10px; padding-right: 0px; padding-left: 0px;" class="col-sm-12 col-md-6 col-lg-4">
<a href="#">
<img style="display: block; margin: 10px auto; width:450px ; height:390px;" class="img-responsive" src="http://images.all-free-download.com/images/graphiclarge/daisy_pollen_flower_220533.jpg" />
</a>
<h3 class="h">@item.GoodTitle</h3>
<h5 class="h">@item.GoodSubText</h5>
</div>
</div>
Ps。也會將height
從height: 390px
更改爲height: auto
以避免圖像拉伸。
1
您的圖片標籤改成這樣:
<img style="width:450px ; height:390px; display: inline" class="img-responsive" src="http://images.all-free-download.com/images/graphiclarge/daisy_pollen_flower_220533.jpg" />
通知我說:display: inline
4
的還有另一種方式來做到這一點:
包括類= 「中心塊」如下圖所示:
<img .. class="img-responsive center-block" src="http://images.all-free-download.com/images/graphiclarge/daisy_pollen_flower_220533.jpg" />
相關問題
- 1. 如何中心我的div引導
- 2. 中心引導div並排
- 3. div將不會在引導中心
- 4. 引導窗體不在div的中心
- 5. 我不能讓一個像我的引導DIV底部
- 6. 不能中心導航Div
- 7. 引導 - 中心div與col-ld- *
- 8. 圖像到引導區div的中心
- 9. 以div爲中心的引導程序
- 10. 中心兩個div在引導2.3.2行
- 11. 無法在引導中心DIV 3
- 12. 引導中心3 COL-MD-3的div
- 13. 中心引導
- 14. 導航欄不會中心引導
- 15. 不能中心引導導航欄
- 16. 要帶來DIV在DIV引導
- 17. 試圖讓3 div中心內div
- 18. Div的是部分中心,但不能讓它動態中心
- 19. 一個div內中心的div是在引導網格
- 20. 中心引導列
- 21. 中心與引導
- 22. 引導提示並不在我的DIV
- 23. 讓整個div打開引導模式
- 24. 我需要在twitter引導中增加span或div的大小
- 25. 我怎樣才能讓div裏面引導柱可滾動
- 26. 需要中心徽標,頂部固定導航引導
- 27. Osclass 3.2.1指導我不要索引頁
- 28. 如何在引導中保持div中心
- 29. DIV不會中心
- 30. 我的DIV不會HTML中心CSS
你知道我自己測試,但它不工作,但它的工作,可恥的是我,謝謝 –
你最歡迎。 –