css - font-size scaled in IE8? -


in ie8

in ie7 , other browser

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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -