我需要帮助解决经常发生的反复出现的问题。我想创建一个包含 3 个内联部分的标题。我使用以下 css 代码内联显示它们: display: inline & float: left
问题是当我调整浏览器窗口的大小时,最后一个 div 被按下并且没有内联显示。我知道这听起来我很挑剔,但我不希望设计在访客改变监视器屏幕时扭曲。我在下面提供了我正在使用的 html 和 css 代码。希望我已经很好地解释了这一点。提前致谢。
HTML
<div class="masthead-wrapper">
</div>
<div class="searchbar-wrapper">
</div>
<div class="profile-menu-wrapper">
</div>
CSS
#Header {
display: block;
width: 100%;
height: 80px;
background: #C0C0C0;
}
.masthead-wrapper {
display: inline;
float: left;
width: 200px;
height: 80px;
background: #3b5998;
}
.searchbar-wrapper {
display: inline;
float: left;
width: 560px;
height: 80px;
background: #FF0000;
}
.profile-menu-wrapper {
display: inline;
float: left;
width: 200px;
height: 80px;
background: #00FF00;
}