| 目次 |
|---|
|
・floatでレイアウト ・floatを指定する場合は、width属性も指定する ・サンプル |
<html>
<head>
<style type="text/css">
<!--
.bar_left{
float : left;
width : 200px;
}
.bar_right{
float : right;
width : 200px;
}
-->
</style>
</head>
<body>
<div class="bar_left">
<A href="info/regist.html" target="_top">会社概要</A>
</div>
<div class="bar_right">
<A href="info/point.html" target="_top">お問い合わせ</A>
</div>
</body>
</html>