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

routing - AngularJS State management ->load multiple states in one page -

python - GRASS parser() error -

json - Gson().fromJson(jsonResult, Myobject.class) return values in 0's -