【ソースコード】番外編:疑似要素の練習
style.css
style.css
@charset "UTF-8";
html {
font-size: 100%;
}
body {
color: #676767;
font-family: 'Open Sans', sans-serif;
letter-spacing: 1.2px;
}
img {
max-width: 100%;
}
.content {
max-width: 800px;
margin: 100px auto;
}
/*
【タイトル】
画面幅を縮めた際に、要素が左にはみ出すのを防ぐために
「display: inline-block;」を指定。
タイトルを基準に疑似要素で横線位置を調整するため、
「position: relative;」を設定しておく。
*/
.title {
display: inline-block;
font-size: 1.25rem;
font-weight: normal;
margin-bottom: 50px;
position: relative;
}
/*
【タイトル(横線)】
「width」「height」で長さと太さを設定。
「content」を指定することで線が表示される。
「position」「top」「left」で、タイトルを基準に
横線の位置を設定します。
*/
.title::before {
content: "";
width: 90px;
height: 1px;
background-color: #676767;
position: absolute;
top: 50%;
left: -120px;
}
.text {
max-width: 460px;
font-size: 0.875rem;
line-height: 1.8;
margin-bottom: 80px;
}
/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 1100px) {
.content {
padding: 0 20px;
}
.title {
left: 120px;
}
}
CodejumpからWeb制作の実践本が発売決定!
Codejumpが書籍化!
1月14日(火)全国の書店&Amazonで発売!
1月14日発売決定!
詳細を見る