+ 1
Text alignment problem!
Can anyone describe me that how the text element works when it's set to justify...?
4 Respostas
+ 3
Pallab Kumar Nakti See here about text alignment
https://code.sololearn.com/WDfdWtoQ1vR0/?ref=app
+ 15
<p> some text </p>
//Css
p{
text-align:center;
}
// text-align: center | right | left | justify;
0
im not quite sure this is what your asking but you can use the <center> or <left> or <right> tags inside of a <p> tag. it would look something like this
<p> <center> <strong> Hello! </p>. Hope this helps