0
can one also create vertical and oblique lines?
Lines
3 Antworten
+ 4
You can create vertical lines with CSS.
For example:
HTML:
<hr class="vertical"/>
CSS:
hr.vertical {
width: 0px;
height: 100%; /* or height in pixels */
}
+ 2
Not with HTML, you use CSS for that.
+ 1
lookup use of svg, canvas