CSS로 세로줄을 만들려면 코드는 다음과 같습니다. -
예시
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.vLine {
border-left: 6px solid rgb(128, 0, 128);
height: 500px;
margin-left: 5%;
}
</style>
</head>
<body>
<h1>Vertical Line Example<h1>
<div class="vLine"></div>
</body>
</html> 출력
위의 코드는 다음과 같은 출력을 생성합니다 -
