css - Gap between difference in paragraph size -
here's fiddle: http://jsfiddle.net/be4sy/
essentially, eliminate gap between these 2 paragraphs. realise inexperienced question, can't figure out how.
here's code:
html:
<p id='big'> big text </p> <p id='small'> small text </p>`
css:
#big { font-size:100px; } #small { font-size:20px; }
simply give them margin: 0
, have look: http://jsfiddle.net/be4sy/2/
Comments
Post a Comment