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?

CSS クラス名とIDとHTMLタグを使った指定方法

Posted at

クラス名 id タグそれぞれを指定する方法

index.html
<p class="container" id="box">ボックス1</p>

このようにあった場合はCSSで指定する方法は以下の通りです

style.css
p{
    font-size: 20px;
    font-family: sans-serif;

}

#box{
    background-color: aqua;
    width: auto;
    height: auto;
    border-width: 2px;
    border-color:black ;
}

.container{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

タグ クラス idをセットで指定する方法

以下のように続けて記入します

style.css
p#box.container {
    font-size: 20px;
    font-family: sans-serif;
    background-color: aqua;
    width: auto;
    height: auto;
    border-width: 2px;
    border-color: black;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

参考書籍
"1冊ですべて身につくHTML&CSSとWebデザイン入門講座"

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?