<div class="first">
<img src="./images/apple.png">
這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容
</div>
div.first{
width: 500px;
border:1px solid red;
}
div.first{
width: 500px;
border:1px solid red;
}
/* 新增以下 */
div.first img{
float:left;
}
div.first{
width: 500px;
border:1px solid red;
}
/* 新增以下 */
div.first img{
float: right;
}
<div class="first">
<img src="./images/apple.png">
這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是內容這是
</div>
div.first{
width: 500px;
border:1px solid red;
}
div.first img{
float:right;
}
解法:使用 clear 及偽元素(Pseudo Element) ::after
div.first{
width: 500px;
border:1px solid red;
}
div.first::after{
content: "abc"; /* 設定內容作示意 */
display: block;
clear: both; /* 設定此元素的左右側,都不能有任何浮動元素,若有的話,就一直往下掉,掉到沒有為止 */
}
div.first img{
float:right;
}
<div class="parent_container">
<div class="left_block">左側區塊<br>第二行</div>
<div class="right_block">右側區塊</div>
</div>