+ 3
Can I edit text size inside a paragraph, in html?
5 odpowiedzi
+ 3
Yes
<style>
span.size {
font-size: 30px;
}
</style>
<p>Can I edit <span class="size">text size</span> inside a paragraph, in html?</p>
+ 4
Specify text size with some class in css and add this class to paragraph, like for simle div element
+ 3
Yes you can as this
<p class="text">
This is a pragraph
</p>
Go your css file
And access class as
.text{
text-size=70px;
}
As many you want
Hope litte bit understand
+ 3
<p style="font-size:40px">text with 40px font</p>
+ 1
Yes, just add "style" attribute