+ 3
How can i add a drop cap??
2 Answers
+ 17
HTML :
<p>Once upon a time in SoloLearn, there was a man called Anshul. He asked for drop-capping.</p>
CSS :
body { font: 15px/1.5 arial, helvetica, sans-serif; } p:first-letter { float: left; font-size: 45px; line-height: 1; font-weight: bold; margin-right: 9px; }
+ 3
hehe....thnx