0
<!DOCTYPE html> <html> <head> <title> my first page </title> </head> <body> <p width="160px">This is a paragraph.</p> </body> </html> it's not working correctly.I mean this sentence not appering in 160px size.why?
please explain step by step
3 Answers
+ 1
To limit the space for your text try:
<p style="width: 160px;">This is a paragraph.</p>
If you want to change the size of your text use the font-size tag
+ 1
p tag doesn't have width attribute. To apply width to p tag u should use style attribute.
<p style='width: 160px'>This is a paragraph</p>
0
thanks to all