+ 3
Hi Friend i have some doubt .. suppose i want to display a column in center with justified then how to do it??
2 Respuestas
+ 5
To put the columns in center you give it a witdth, then you put margin auto.
Then you can use text-align,
and to see the result: border
CSS:
width: 80%;
margin: auto;
text-align:justify;
border: 5px black solid;
0
ok thnx frnd