我想把两个并排放在另一个上(我有三个)这是我的代码:
<div class=Mheader >
<div class=theader>
Meine Route !
</div>
<div class=imgcss>
<img src="Images/Route1.png" width=600 height=100 />
</div>
但图像总是在文字下方。我该如何解决这个问题?我的 CSS 是:
.Mheader
{
font-family: 'Trebuchet MS';
font-size: larger;
font-weight: bold;
font-style: italic;
text-transform: capitalize;
color: #FFFFFF;
background-color: #008800;
width: auto;
height: 100px;
}
.theader
{
font-family: 'Franklin Gothic Demi';
font-size: xx-large;
font-weight: bold;
font-style: italic;
line-height: normal;
width: 250px;
text-align: left;
height: 100px;
}
.imgcss
{
text-align: right;
width: 600px;
}