のデータ54日目のコード
9687 ワード
導入
CSSシリーズは、いくつかの共通のCSS使用に関する注意事項です.3つのタイプのCSS位置:ブロック、インライン、インラインブロックです.
1 .ディスプレイ:ブロック
プロパティ
デモ
コード
<div class="outer">
<span class="inner">
inner
</span>
<span class="inner">
inner
</span>
</div>
.outer {
position:relative;
color:green;
border: 3px solid green;
height: 400px;
width: 500px;
}
.inner {
display:block;
padding:2%;
margin: 2%;
color: blue;
border: 3px solid blue;
text-align:center;
font-size: 30px;
height: 100px;
width: 200px;
top:50%;
}
2 .ディスプレイ:インライン
プロパティ
デモ
コード
<div class="outer">
<span class="inner">
inner
</span>
<span class="inner">
inner
</span>
</div>
.outer {
position:relative;
color:green;
border: 3px solid green;
height: 400px;
width: 500px;
}
.inner {
display:inline;
padding:2%;
margin: 2%;
color: blue;
border: 3px solid blue;
text-align:center;
font-size: 30px;
height: 100px;
width: 200px;
top:50%;
}
ディスプレイ:インラインブロック
プロパティ
デモ
コード
<div class="outer">
<span class="inner">
inner
</span>
<span class="inner">
inner
</span>
</div>
.outer {
position:relative;
color:green;
border: 3px solid green;
height: 400px;
width: 500px;
}
.inner {
display:inline-block;
padding:2%;
margin: 2%;
color: blue;
border: 3px solid blue;
text-align:center;
font-size: 30px;
height: 100px;
width: 200px;
top:50%;
}
それだ!記事
私の記事はいくつかあります.お気軽にチェックしてください!
Reference
この問題について(のデータ54日目のコード), 我々は、より多くの情報をここで見つけました https://dev.to/jenhsuan/day-54-of-100daysofcode-review-css-position-1cl3テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol