html - CSS 显示 : inline-block drops to next line

标签 html css

我有一个正在测试的简单网格。

我决定在属性选择器 [class*='col-] 中将 float: left 更改为 display: inline-block >.

我想知道为什么在使用 float: left 时有足够的空间用于 col-9 并且一切正常,但是在使用 display: inline-block 时 元素下降到下一行。

* {
    box-sizing: border-box;
}

.header {
	border: 1px solid red;
	padding: 15px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*='col-'] {
	display: inline-block;
	padding-top: 15px;
	border: 1px solid red;
}
	<div class='header'>
		<h1>China</h1>
	</div>
	<div class='row'>
		<div class='col-3'>
			<ul>
				<li>The Flight</li>
				<li>The City</li>
				<li>The Island</li>
				<li>The Food</li>
			</ul>
		</div>
		<div class='col-9'>
			<h1>The City</h1>
			<p>Chania is the capital of the Chania region on the island of Crete. The city can be divided in two parts, the old town and the modern city.</p>
			<p>Resize the browser window to see how the content respond to the resizing.</p>
		</div>
	</div>

最佳答案

<div class='header'>
        <h1>China</h1>
    </div>
    <div class='row'>
        <div class='col-3'>
            <ul>
                <li>The Flight</li>
                <li>The City</li>
                <li>The Island</li>
                <li>The Food</li>
            </ul>
        </div><!--
        --><div class='col-9'>
            <h1>The City</h1>
            <p>Chania is the capital of the Chania region on the island of Crete. The city can be divided in two parts, the old town and the modern city.</p>
            <p>Resize the browser window to see how the content respond to the resizing.</p>
        </div>
    </div>

小技巧,试试这些 <!-- -->它忽略空格

编辑: 如果您想删除页眉的微小间隙:

.col-9 {
  vertical-align: top;
}

demo

关于html - CSS 显示 : inline-block drops to next line,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39335827/

相关文章:

firefox - 如何指定运行 GWT 测试的浏览器?

html - 输入时输入占位符动画

html - 负 margin-left 工作正常,负 margin-right 创建滚动条

jquery - 互联网浏览器 :Hover style getting stuck on jQuery sortable element

css - jqm listview 的搜索过滤器的迷你版

html - 我可以将文本背景设置为在图像上模糊吗?

javascript - 如何使用jquery获取body元素

asp.net - 管理页面布局-asp.net

html - 仅将样式设置为使用 *ngFor 创建的第一个元素

html - 打印时如何给每一页加logo