+ 3
Width for paragraphs
how can use width Xpx for my <p> with out using css? I tried this, too: <p width=50px>hello world</p> and it doesn't work. plz help plz like
5 Answers
+ 4
the style attribute is css, which he doesn't want to use.
what about <p width="50px">hello world</p>
does this work for you?
+ 3
<p style="width:50px">Hello world</p>
:)
+ 2
must use <p style="width: 50px">
<p width="50px"> or <p width="50"> is not workable.
+ 2
Maybe, this can be achieved like this:
<div style="width:50px"><p>Hello world</p></div>
:)
0
Look for "call" css in the same file html use this Example: like guide:
<p style="background-color: red">Hello</p>
Good Luck