2021.11.17 Today I Learned


今日は前回の授業に続いて、CSSの基礎を築きます.

たんい


単位は、さまざまな箱の寸法または余白を入力し、等値を入力します.
絶対単位はcm,mm,in,pxなどであり,相対単位はem,ex,rem,vw,vh,vmin,vmaxなどである.また、%も単位で使用しています.
絶対単位としての常用単位.
Em:要素のフォントサイズ
rem:ルート要素のフォントサイズ
vw:ビューポート幅の1%
vh:ビューポートの高さの1%
程度がある.
vwとemの違い

Emはフォントベース、vwはビューポートベースで、同じ10でも異なるサイズがあります.
%は%単位で、親の幅を基準にしています.
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .boxsize{
            width: 200px;
            height: 80px;
            background-color: white;
            color:white;
            font-size: 10px;
            border: 1px solid black;
            margin: 50px;
        }
        .hundper{
            width:100%;
            height:10px;
            background-color: black;
            margin-top: 10px;
        }
        .sevenper{
            width:70%;
            height:10px;
            background-color: aqua;
            margin-top: 10px;
        }
        .fifper{
            width:50%;
            height:10px;
            background-color: red;
            margin-top: 10px;
        }
        .tenper{
            width:10%;
            height:10px;
            background-color: blue;
            margin-top: 10px;
        }
    </style>
</head>
<body>
    <div class="boxsize">
        <div class="hundper"></div>
        <div class="sevenper"></div>
        <div class="fifper"></div>
        <div class="tenper"></div>
    </div>
</body>
</html>
このようにして、親ボックスの寸法に基づいてwidthを測定することがわかる.
最後に、透明度も調整できます.透明度の調整は不透明度に調整できます.
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .boxsize{
            width: 200px;
            height: 80px;
            background-color: black;
            color:white;
            font-size: 10px;
            margin: 50px;
        }
        .opacity-eight{
            opacity: 0.8;
        }
        .opacity-five{
            opacity: 0.5;
        }
        .opacity-two{
            opacity: 0.2;
        }
        
    </style>
</head>
<body>
    <div class="boxsize"></div>
    <div class="boxsize opacity-eight"></div>
    <div class="boxsize opacity-five"></div>
    <div class="boxsize opacity-two"></div>
</body>
</html>