私はチャットサイトのウェブサイトデザインに取り組んできましたが、私が正しいものにしようとするすべての試みはこれまで失敗しました。私はテーブルでそれをやろうとしましたが、それは常に1つのブラウザ(ほとんどIEのtho)、divs、そしてもっと多くで失敗しました。CSS/HTMLのフルスクリーンサイト
ウェブサイトは、最小幅900、最小高さ500pxのフルスクリーンでなければなりません。私はjavascriptなしでこれをやりたがっています(私はJSで作ったのですが、これはそれがなくて済む必要があります:<)
これはどのように見えるべきかの写真です。私はそれは、Firefox + Chromeで作業しましたが、IEは従わないことを決定し、事前に
おかげ
EDIT
純粋なCSS/HTMLでこれが可能であると思います
任意のルール...
<html>
<head>
<style type="text/css">
body{
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
}
</style>
</head>
<body>
<div style="height: 100%; width: 100%;">
<div style="position: relative; height: 100%; width: 100%; background-color: gray; min-width: 900px; min-height: 500px;">
<div style="position: absolute; height: 30px;left:0px; right: 300px ; background-color: yellow; bottom: 0;">
Input
</div>
<div style="position: absolute; height: 200px; width:300px; right: 0px; background-color: green; bottom: 0;">
ad
</div>
<div style="position: absolute; bottom: 200px; width:300px; right: 0px; top: 20px; background-color: blue;">
online
</div>
<div style="position: absolute; width:300px; right: 0px; top: 0px; height: 20px; background-color: red;">
online menu
</div>
<div style="position: absolute; right: 300px; top: 0px; left: 0px; height: 20px; background-color: yellow;">
tabs
</div>
</div>
</div>
</body>
</html>
画像リンクが壊れているようです。 Tinypicを試してみませんか? – Qix
オールライト、http://i52.tinypic.com/33m3g3o.png – Jorik
クール、それは動作しますが、私は以下の私の答えを更新します。 – Qix