0

モバイルアプリを作るのは初めてです。ドリームウィーバーを使用しています。背景画像が表示されていません。

HTML

<!doctype html>
    <html>
    <head>
    <style type="text/css">

    </style>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="css/style.css" rel="stylesheet" type="text/css">
    </head>

    <body class="main-page">

    </body>
    </html>

CSSファイル

@charset "utf-8";
/* CSS Document */
body.main-page 
{
    background-attachment: fixed;
    background-image: url (images/home_main.jpg);
    background-repeat: no-repeat;
}
4

1 に答える 1