基於我以前的thread我試圖使用並理解推薦的方法來使用溢出元素水平對齊兩個div。CSS Wordwrap無法按預期方式工作
用我的短文本兩個div對齊正確,但是當我添加獨立文本時,它會落在圖像下方。任何人都可以解釋爲什麼會發生這種情況,我該如何解決它?
HTML:
<div class="container" style="overflow: hidden; width: 100%">
<div class="left">
<img src="http://localhost/new/img/sampleimg.png" class="wall-thumb-small" />
</div>
<div class="right">
<div style="word-wrap: break-word;">Some long text here Some long text here Some long text here Some long text here Some long text here </div>
</div>
</div>
CSS:
div.container {
border: 1px solid #000000;
overflow: hidden;
width: 100%;
}
div.left {
padding:5px;
float: left;
}
div.right {
float: left;
}
.thumb-small{
width:35px;
height:35px;
border: 1px solid #B6BCBF;
}
什麼不工作?你可以發佈所需佈局的打印屏幕嗎? – Aprillion
看看我的JSFiddle。我期望更長的文本垂直對齊到右邊的div的頂部,但它不需要指定寬度 – Paul
。結帳這個小提琴:http://jsfiddle.net/JVhQB/4/ – karthikr