0
How to keep boarders in html
I don't know
6 Antworten
+ 3
Where do you want borders? How exactly do you want them to look?
Please give an example code.
+ 2
Hola, In Html, we can add the border using the following two different ways:
1- Using Inline Style attribute (which I dont recommend)
<table style="border: 1px solid">
2- Using Internal CSS (best practice)
table, th, td {
border: 1px solid;
}
ref1: https://www.javatpoint.com/how-to-add-border-in-html
ref2: https://www.w3schools.com/css/css_table.asp
0
Means side boarders
0
I can't tell you clearly
0
Sorry
0
Thank you