このように - http://jsfiddle.net/mMPMh/10/
またはこれ - http://jsfiddle.net/mMPMh/14/ ? これはIE7で動作します
ハックに関しては、次のような条件文を使用して提供できます
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="ie7-and-down.css" />
<![endif]-->
または、これを HTML で使用する (HTML5BP から)
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
そして、このようなスタイルを提供します:
.lt-ie8 #one,
.lt-ie8 #two,
.lt-ie8 #three {
display:inline;
zoom:1;
}
ハックなし