HTML·CSS

221221 HTML CSS border 추가

주영재 2022. 12. 21. 19:21
<!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>
        p{
            width: 300px;
            height: 100px;
            /* border:1px solid red; */
            border-bottom: 1px solid red;
            border-top: 1px solid red;
            border-left: 1px solid red;
            border-right: 1px solid red;
            border-radius: 10px;
        }

    </style>
</head>
<body>
    
    <p>윤곽</p>


</body>
</html>