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

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -