我想把matcha img
移到右边,并把文本放在它们下面。我试着使用margin-left
和margin-bottom
,但没有帮助。
#hotlatte img {
border: solid #664d00;
border-width: 5px;
border-radius: 60px;
width: 300px;
height: 400px;
padding: 10px;
}
#matcha img {
border: solid #664d00;
border-width: 5px;
border-radius: 60px;
width: 300px;
height: 400px;
padding: 10px;
}
.namesofdrinks {
font-style: italic;
font-size: 28px;
color: #804500 ;
font-family:'Courier New', Courier, monospace;
}
<div id="hotlatte">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Latte_art_3.jpg/1920px-Latte_art_3.jpg" alt="coffe latte" />
</div>
<h3 class="namesofdrinks">Coffe latte</h3>
<div id="matcha">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Matcha_%286328677556%29.jpg/1920px-Matcha_%286328677556%29.jpg" alt="matcha">
<h3 class="namesofdrinks">Matcha Coffe</h3>
</div>
1条答案
按热度按时间f0ofjuux1#
首先,需要使用div对图像和文本进行分组。
然后试试这个CSS代码。