我是新來的HTML和CSS,當我嘗試編寫代碼時出現了一些問題。我想的是,HTML/CSS - 如何將我的圖像放置在右側,以便它可以與左側的文本對齊?
- 文本(左側中間部分)和圖像(在右側中間部分)並排
- 自適應設計 - 可讓文字在頂部和圖像是在底部
這裏有問題,
- 如何把我的形象定位到右側,以便它可以與我的左文本對齊?
- 文本和圖像似乎向下傾斜。
- 當我調整瀏覽器的大小時,文字和圖片沒有反應,一切都崩潰了,我該如何解決?
非常感謝!
.first_section {
background-image:url('http://i347.photobucket.com/albums/p462/jimprince1990/zinc-white_zpsiibjtmdi.jpg');
background-position:center top;
background-size: cover;
padding: 200px 150px;
margin: 0 30px;
font-family: 'Trebuchet MS', 'Helvetica', 'sans-serif';
}
#first_section_text {
float: left;
text-align: left; /*Set everything to the left */
display: block;
width: 50%;
}
#first_section_image {
float: right; /* float property can be used to wrap text around images */
width: 50%;
height: 50%;
display: block;
}
<div class="first_section">
<div id="first_section_text">
<p>IT'S OFFICIALLY SANDWICHES SEASON</p>
<p>This summer, we've got more sandwiches options than ever. From the new mexican style to our classic chicken and beef sandwich, there's a style to fill you up on any hot day.</p>
<a href="navigation_bar/sub_menu/sandwiches.html">Explore now!</a>
</div>
<div id="first_section_image">
<img src="http://i347.photobucket.com/albums/p462/jimprince1990/Sandwiches_zps99hlhkod.jpg" height= "235" width= "235"/>
</div>
</div>
使用媒體查詢 –
媒體查詢只能是如果寫成正常良好。我建議查看bootstrap,而不是媒體查詢。你只需要添加類,它就完成了。 看看這裏:http://getbootstrap.com/css/ –
@AkashAgrawal。你是對的。 Bootstrap使用簡單的類來完成所有工作。 col-md,col-sm等 –