html - How to use two styles tags inline? -
how insert this,
style="text-align:justify"
to following code?
<html> <body> <table style="border:1px solid yellow;"> <tr> <td style="border:1px solid red;">england</td> <td style="border:1px solid blue;">france</td> </tr> </table> </body> </html>
it's easy, can put argument text-align
inside td
without needing put in .css stylesheet
follows:
<td style="border:1px solid red; text-align: justify">england</td>
Comments
Post a Comment