背景画像の操作について勉強しているのですが画像が表示されず前に進めません。コードは以下のように書いてます。
HTML
1<!DOCTYPE html> 2 3<html lang="ja"> 4 <head> 5 <meta charset="UTF-8"> 6 <title>CSS</title> 7 <link rel="stylesheet" type="text/css" href="style.css"> 8 </head> 9 <body> 10 11<div class="box"></div> 12 13 </body> 14 </html>
CSS
1.box{background-color: #e4e4e4; background-image: url('space.jpeg'); background-repeat: no-repeat;} 2.scroll{background-attachment: scroll;} 3.fixed{background-attachment: fixed;} 4.local{background-attachment: local;}
回答2件
あなたの回答
tips
プレビュー