Last active
January 23, 2019 04:23
-
-
Save creeperyang/dcf0ad40624dec5e61441957cb061f2a to your computer and use it in GitHub Desktop.
table布局
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html,body { margin: 0;} | |
.container { | |
background: #f0f3f6; | |
display: table; | |
width: 100%; | |
/* 不加这个无法正确等宽切分 */ | |
table-layout: fixed; | |
} | |
.item { | |
display: table-cell; | |
width: 33.33%; | |
overflow: hidden; | |
box-sizing: border-box; | |
padding: 10px; | |
border-right: 1px dashed; | |
background: #f0f0f0; | |
} | |
.item:nth-last-child(1) { | |
border-right: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="item"> | |
行行重行行,与君生别离。 | |
<br>相去万余里,各在天一涯; | |
<br>道路阻且长,会面安可知? | |
<br>胡马依北风,越鸟巢南枝。 | |
<br>相去日已远,衣带日已缓; | |
<br>浮云蔽白日,游子不顾反。 | |
<br>思君令人老,岁月忽已晚。 | |
<br>弃捐勿复道,努力加餐饭! | |
</div> | |
<div class="item"> | |
人生天地间,忽如远行客。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。 | |
</div> | |
<div class="item"> | |
同心而离居,忧伤以终老 | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment