CSS - Measurement Units



Example -Demo pc unit

<!DOCTYPE html>
<html>
<head>
    <title>CSS Units</title>
    <style>
        .box {
            width: 6pc;
            height: 6pc;
            background-color: red;
            margin-bottom: 10px;
        }
        .box2 {
            width: 12pc;
            height: 12pc;
            background-color: blue;
            margin-bottom: 10px;
        }
        .box3 {
            width: 18pc;
            height: 18pc;
            background-color: green;
        }
    </style>
</head>
<body>
    <div class="box"></div>
    <div class="box2"></div>
    <div class="box3"></div>
</body>
</html>
Advertisements