<div> 這是第一層第1個容器區塊 </div> <div> 這是第一層第2個容器區塊 </div> <div> 這是第一層第3個容器區塊 </div> <div> 這是第一層第4個容器區塊 </div> <style> div { background-color: greenyellow; border: 1px solid green; } </style>
<div> 這是第一層第2個容器區塊 <span class="s1"> 這是行中局部內容 </span> </div> <div> 這是第一層第3個容器區塊 <span class="s2"> 這是行中局部區塊 </span> </div> <style> span.s1 { background-color: hotpink; padding: 10px; margin: 10px; width: 300px; } span.s2 { background-color: hotpink; padding: 10px; margin: 10px; width: 300px; display: inline-block; } </style>
<div> 這是第一層第4個容器區塊 <img src="../img/images/flower/f8.jpg" alt=""> </div> <style> img { background-color: #fff; padding: 10px; margin: 20px; width: 150px; } </style>