<style>
div {border:1px solid;}
.align_left{text-align:left;}
.align_center{text-align:center;}
.align_right{text-right;}
- Dec 25 Mon 2017 12:45
-
對齊 align
- Dec 25 Mon 2017 12:45
-
對齊 align
<style>
div {border:1px solid;}
.align_left{text-align:left;}
.align_center{text-align:center;}
.align_right{text-right;}
- Dec 20 Wed 2017 14:37
-
不用clear的浮動 inline-block
<style>
.inline_block {
display:inline-block;
width:50px;
height:50px;
- Dec 20 Wed 2017 14:37
-
不用clear的浮動 inline-block
<style>
.inline_block {
display:inline-block;
width:50px;
height:50px;
- Dec 20 Wed 2017 14:29
-
浮動 float
<style>
.float_left {float:left}
.float_clear {clear:both}
</style>
<div class="float_left">1</div>
- Dec 20 Wed 2017 14:29
-
浮動 float
<style>
.float_left {float:left}
.float_clear {clear:both}
</style>
<div class="float_left">1</div>
- Dec 20 Wed 2017 14:13
-
超出範圍 overflow
<style>
.overflow_hidden {
width:50px;
height:50px;
border:1px solid;
- Dec 20 Wed 2017 14:13
-
超出範圍 overflow
<style>
.overflow_hidden {
width:50px;
height:50px;
border:1px solid;
- Dec 19 Tue 2017 13:24
-
位置 position
<style>
.position_static {border:1px solid;}
.position_relative {
position:relative;
border:1px solid;
- Dec 19 Tue 2017 13:24
-
位置 position
<style>
.position_static {border:1px solid;}
.position_relative {
position:relative;
border:1px solid;
- Dec 19 Tue 2017 13:19
-
伸縮的寬 max-width
<style>
max-width:600px;
margin:auto;
border:1px solid;
</style>
- Dec 19 Tue 2017 13:19
-
伸縮的寬 max-width
<style>
max-width:600px;
margin:auto;
border:1px solid;
</style>