html - Having strange issues with inline inputs in IE -
i've been building form day , doing of dev in webkit browsers because of developer tools. went test in ie , i'm having strange results regards having 3 columns of divs in row. can't seem find fix. has seen issue before (see link below)?
i suggest avoiding use of display: inline-block
, since ie 6 , 7 don't implement properly. in case, can solve issue in ff changing line 33 of stylesheet. remove display: inline-block
, instead, float left.
#paydayform .row .column { float:left; margin-bottom:5px; margin-right:18px; margin-top:5px; width:170px; }
Comments
Post a Comment