0

いくつかのボタンを保持している背景画像が1つあるページがありました。しかし、ページ全体の背景は白です。それは良くありません私は背景色が欲しいですそして私はこのすべてを同じように持続させる必要があります。

    <html>
    <body>
        <div class="outer" style="background-image:url('BG_BLUE_NEW.jpg'); background-repeat:no-repeat;background-position:center;height:768px;width:1100px;margin-top:-50px:padding-left:0px"></div>
        <div class="login" style="margin-top:-430px;float: left;height: 290px;">
                <form style="padding-left:250px;">
                    <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                    <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                    <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                    <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                    <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                </form>
        </div>
    </body>
    </html>
4

3 に答える 3

1

これを試してください、 http://www.w3schools.com/css/tryit.asp?filename = trycss_background_shorthand

背景-色背景-画像背景-繰り返し背景-添付ファイル背景-位置

background:#ffffff url('img_tree.png')no-repeat右上;

 <html>
<body>
    <div class="outer" style="background: blue url('BG_BLUE_NEW.jpg') center; height:768px;width:1100px;margin-top:-50px:padding-left:0px"></div>
    <div class="login" style="margin-top:-430px;float: left;height: 290px;">
            <form style="padding-left:250px;">
                <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
                <INPUT TYPE="button" style="background-color:SteelBlue;width:100px;height:30px;font-size:150%;margin-bottom:10px" VALUE="Submit" onClick="window.open('http://www.google.com','_blank');"><br>
            </form>
    </div>
</body>
</html>
于 2012-09-07T09:43:43.163 に答える
0

CSSを使用する:

body
{
    background: color: #f00; /*your color here*/
}

これにより、すべてのページで選択した色に関係なく、ボディ要素の背景が作成されます。

于 2012-09-07T08:23:49.180 に答える
0
   body {
      background-color: #ff0000
   }
于 2012-09-07T08:31:15.833 に答える