前提・実現したいこと
index.php
に対してCSS
stylesheet.css
を適用させたいのですがされませんでした。
index.phpの
<link rel="stylesheet" href="css_files/stylesheet.css">
の相対パスに間違いはありません。
index.htmlの場合と同じ書き方なのが原因なのでしょうか。
該当のソースコード
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>login</title> <link rel="stylesheet" href="css_files/stylesheet.css"> </head> <body> <header class="leftNavigation"> <p>hoge</p> </header> <div class="content"> <p>hoge</p> </div> </body> </html>php
```css
body{
display: flex;
min-height: 100vh;
}
.leftNavigation{
width: 250px;
text-align: center;
background-color: #888;
color: #fff;
}
.content{
flex: 1;
background-color: #eee;
text-align: center;
margin-left: 10px;
}
回答1件
あなたの回答
tips
プレビュー