質問

これが私の問題です:

http://dl.dropbox.com/u/31659128/buildworx/site-v2/project/index.html

スクリーンショット: enter image description here

私はこれを正しく浮かんでいるようには見えません。

 header, nav { margin: 0 auto 30px auto; width: 960px; }

header #ip-wrapper { float: right; width: 375px; }
header #ip-wrapper .ip-wrap { background: #636363; background: -webkit-linear-gradient(top, rgba(125, 126, 125, 1) 0%,rgba(58, 58, 58, 1) 100%); margin: 10px 0; border-radius: 20px 5px 5px 20px }
header #ip-wrapper .ip-wrap .ip-name { background: #e5e5e5; background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(229,229,229,1) 100%); display: inline-block; padding: 10px 12px; border-radius: 5px 0 0 5px; margin: 0 10px 0 0 }
役に立ちましたか?

解決

フロートを使用:画像に残します。

<img src="images/logo.png" alt="bw" style="float: left;">

#ip-wrapperは現在、インラインオブジェクトである何かの右側に浮かそうとしています。それがあなたの問題を引き起こしているものです。

他のヒント

HTML5を使用しています header 古いブラウザが適切に処理しないタグ、 <div class="header"> 古いバージョンをサポートしたい場合。失うかもしれません navfooter 同じように。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top