+ 1
Can you validate this code ?
I want to get a line with 50px on the left of the screen. Is it right to code this way ? <p align="Left" > <hr width="50px"/> </p>
4 ответов
+ 1
<hr style="margin-left: 0" width="50px"/>
+ 1
When you're done with HTML, or alongside HTML, make sure you learn CSS in the process. That'll help you out with the styling of everything.
0
<hr style="float:left;width:50px"/>
0
Thank you! I got the answer.