我正在尝试将图像和文本放在另一个图像旁边。如果你想看看我的意思,请看这里:
我尝试使用花车和东西,但它似乎没有用。这是我的代码:
.left {float: left;}
.right{float: right;}
<div class="left">
<img src="img/image1.png" />
<p>Text</p>
</div>
<div class="right">
<img src="img/image2.png" />
</div>
答案 0 :(得分:0)
<body>
<div id="Menu">
<img src="image"/>
<h4>Text</h4>
</div>
<div id="Container">
<h4>Content Section</h4>
</div>
body, html {
width:100%;
height:100%;
margin:0;
color:white;
}
#Menu {
background-color:black;
height:50%;
width:25%;
position:relative;
top:70px;
float:left;
}
#Container {
height:50%;
width:70%;
background-color:blue;
position:relative;
top:70px;
float:right;
}
答案 1 :(得分:0)
你走了,
.container {
width:100%;
height:500px;
}
.left, .right{
position:relative;
height:100%;
width:50%;
float:left;
}
.img1{
width:100%;
height:50px;
}
<div class='container'>
<div class="left">
<img src="http://www.ancestry.com/wiki/images/archive/a/a9/20100708215937!Example.jpg" alt="img 1" class='img1'/>
<p>asdf asfd asdf asdf</p>
</div>
<div class="right">
<img src="http://www.ancestry.com/wiki/images/archive/a/a9/20100708215937!Example.jpg" alt="img 1" />
</div>
</div>