css - font-size scaled in IE8? -
both page scaled in 100%.i found font-size in ie8 , in ie8 bigger other browser.is can tell me reasion , solution ?
here html , css:
<div class="a_ticket-box"> <a href="" class="a_ticket" id="a_ticket_en"> <img id="a_ticket_btag_en" src="../img/tag-en.png" alt=""> <h4 id="en-buy">purchase ticket</h4> <p id="en-p">newly added march 5-6 fifth floor ticket</p> </a> </div>
thx
i don't see css code. see in html don't have specified font size inside paragraph. browsers can interpretate default font size in < p> different. should set font size in css like:
#en-p { font-size: 1em; }
or inline inside paragraph like:
<p id="en-p" style="font-size: 1em;">newly added march 5-6 fifth floor ticket</p>
Comments
Post a Comment