If you are using IE7 or IE8, make sure your DOCTYPE is present so that it does not appear in quirks mode.
Using HTML4 Strict or HTML5 DOCTYPES worked for me in IE8
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <body> <ul style="list-style-type:none; margin:0px; padding:0px"> <li style="width:120px; display:table-cell; padding:1px;">asdf</li> <li style="width:30px; display:table-cell; padding: 1px;"> <input id="changemanufacturer" type="checkbox"> </li> </ul> </body> </html>
HTML5: <!DOCTYPE html>
foson source share