Computer Science, asked by ooo6, 1 year ago

write a program to create a vertical line in web page between good and morning

Answers

Answered by kliptu
2
If you are looking for CSS class, here it is:

HTML 
<div class="good">GOOD</div>
<div class="morning">MORNING</div>

CSS
.good {
     border-right:1px solid #000;
}

You can add min-height CSS property to increase line height.

ooo6: thank you
Similar questions