0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

HTML 見だしのデザイン 自分メモ

Posted at

デザイン

スクリーンショット 2024-01-17 17.38.27.png

文字を横に並べて見だしを表現するのに次のことを行うことで実装することができる。
H3タグ:横並び,余白の設定,テキストの上下中央揃え
span(numberクラス)タグ:フォントサイズの設定,文字色の設定

HTML,CSS

index.html
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <h3>
        <span class="number">1</span>
        <span>今日もフロントエンド学習!<br/>5時間/日は集中</span>
    </h3>
    <h3>
        <span class="number">2</span>
        <span>明日も元気に継続するぞ</span>
    </h3>
</body>
</html>
style.css
h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.number {
    color: #4bed6e;
    font-size: 40px;
    line-height: 1;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?