왼쪽 테두리의 너비를 설정하려면 border-left-width를 사용하세요. CSS의 속성. 다음 코드를 실행하여 border-left-width를 구현할 수 있습니다. 속성 -
예시
<!DOCTYPE html> <html> <head> <style> p { border-style: dashed; border-left-width: 10px; } </style> </head> <body> <p>This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text.</p> </body> </html>
출력