html - Adjusting the width of the Legend field for IE8 and lower -


i created html 5 form legends have background colors. aim, accomplished in firefox, google chrome, ie 9>, have text background color extend width of page. problem in ie8 , lower versions extends end of words. have far css wise regular page:

   .formarea legend     {    font-weight: bold;    font-size: 1.2em;    line-height: 2em;    display: block;        color: white;            background-color: #a70c1e;        width: 95%;        padding-left: 7px;        } 

may have insight on how make necessary adjustments ie8

i used padding:

 .formarea legend      {        font-weight: bold;        font-size: 1.2em;        line-height: 2em;        color: white;        background-color: #a70c1e;        width: 80px !important;        padding-right: 650px !important;               display: block;             }      .formarea legend span    {         width:100%;      } 

Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -