似乎是一個非常簡單的解決辦法,但我的大腦一片空白......獲取申報單一起玩
代碼:
#content{
border: solid #d8d9da 1px;
display:inline-block;
float:left;
background-color:#ffffff;
border-radius: 4px;
margin:5%;
padding-bottom:20px;
}
.main_row{
background-color: PURPLE ;
height:auto;
min-height:50px;
margin: 10px 10px 0px 10px;
display:inline-block;
float:left;
}
.row_content{
background-color: RED ;
height:auto;
min-height:50px;
background-color:red;
word-wrap: break-word;
display:inline-block;
float:right;
}
.thumbnail{
background-color: GREEN ;
height:50px;
width:100px;
}
.row_extra{
font-size:10px;
}
\t <div id="content">
\t \t <div class="main_row">
\t \t \t <div class="thumbnail">IMG</div>
\t \t \t <div class="row_content">
\t \t \t \t Reflection makeReflection makeReflection makeReflection makeReflection makeReflection make Reflection makeReflection makeReflection make
\t \t \t \t <div class="row_extra">extra stuffhere</div>
\t \t \t </div>
\t \t
\t \t </div>
\t
\t </div>
img總是停留在左側,紅色內容永遠不會移動到圖像的左側
它看起來像你的文章主要是代碼;請添加更多的細節。
這很有趣我還沒有真正意識到添加'表屬性'而不實際使用表的想法。你知道他們有什麼缺點嗎?他們看起來非常有用 – DardanM
@DardanM,通過向div添加表屬性不會導致任何問題,Infact通過添加table-cell屬性可以減少佈局代碼。更多你可以在這裏閱讀。 https://css-tricks.com/almanac/properties/d/display/ – Prime
您可以隨時查看CanIuse,看它是否具有良好的瀏覽器支持。 http://caniuse.com/#feat=css-table – Damien