0
Anyone knows how to change the size of the text in the CSS?
Size of words we write in the html
4 Respostas
+ 3
Use font-size
+ 3
Mani Singh <div> <p style="font-size: 30px;">DIFFRERENT TYPES OF CARS</p></div>
0
its not working
<div font-size="50%"><caption>DIFFRERENT TYPES OF CARS</caption></div>
0
Copy this one
<style type="text/css>
.name {font-size:0px}
/* pls change the px value depending on your expected enlargement length*/
</style>
<body>
<p class="name"> text </p>
</body>