HTML Table table border color and style design
HTML Table Table border color and style can use css 's border-width , border-Color and border-style three attributes to design, you can directly use css border border properties directly once finished, the syntax is more concise and easier to maintain, an ordinary In this case, the four borders of the table are almost the same color. Only a few times, different borders need to be designed for four different directions. In either case, CSS can do it. This introduction will provide several Different examples allow readers to see different ways of designing HTML table borders. These examples are supported by almost all mainstream browsers.
HTML Table table border color is the same as style design example 1, four borders
<tr><td>This is a table field</td><td>This is a table field</td ></tr>
<tr><td>This is a table field</td><td>This is a table field</td></tr>
</table>
<table style=" border:3px #FFD382 dashed; "cellpadding="10" border='1'>
<tr><td>This is a table field</td><td>This is a table field</td></tr>
<tr><td >This is a table field</td><td>This is a table field</td></tr>
</table>
<table style=" border:8px #FFD382 groove; "cellpadding="10" border= '0'>
<tr><td>This is a table field</td><td>This is a table field</td></tr>
<tr><td>This is a table field</td><td>This is a table field</td></tr>
</table>
This is a table field | This is a table field |
This is a table field | This is a table field |
This is a table field | This is a table field |
This is a table field | This is a table field |
This is a table field | This is a table field |
This is a table field | This is a table field |
In the first example, we did not use border-color or border-style independent writing. If you are interested in CSS border design techniques or independent writing of various effects, these articles are worth studying.
- CSS border
- CSS border-color border color
- CSS border-style
HTML Table table border color and style design example 2. Different border effects
<tr><td>This is a table field</td> <td>This is a table field</td></tr>
</table>
This is a table field | This is a table field |
- border-top ← is used to design the top border.
- border-right ← is used to design the right border.
- border-bottom ← is used to design the bottom border.
- border-left ← is used to design the left border.
Post a Comment
0 Comments