webサイトのコーディングを行っているのですが、
CSSでのjustify-content: space-between;が効かず…
ご意見いただければ幸いです。
検証ツールでもちゃんと記述できているように見えます。
また、font-sizeの指定がh要素やa要素には効くのですがp要素には効かないという症状もあり…
可能であれそちらもご意見いただけますでしょうか。
よろしくお願いいたします。
HTML
html
1 <!DOCTYPE html> 2<html lang="ja"> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 6 <title>design for smile</title> 7 <meta name="descriptation" contact="design for smile"> 8 <meta name="viewport" content="width=device-width, initial-scale=1"> 9 <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> 10 <link rel="stylesheet" href="css/style.css"> 11 <link rel="icon" type="mage/png" href="img/culture-img.png" sizes="16x16"/></script> 12 </head> 13 14 <body> 15 <header> 16 <div class="header-item"> 17 <p>1</p> 18 <p>2</p> 19 </div> 20 </header> 21 </body> 22</html>
CSS
css
1@charset "UTF-8"; 2html { 3 font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','MS ゴシック',sans-serif; 4 font-size: 62.5%; 5} 6 7a { 8 text-decoration: none; 9 color: white; 10} 11 12img { 13 max-width: 100%; 14} 15 16body { 17 font-size: 1.6em; 18} 19 20p { 21 font-size: 1.5rem; 22} 23 24 25 26.header-item { 27 display: flex; 28 justify-content: space-between; 29 position: fixed; 30}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/08 14:05
2020/08/08 14:13
2020/08/08 14:17
2020/08/08 14:35
2020/08/08 14:37
2020/08/08 14:48