前提・実現したいこと
WordPressにてCSS,background-imgにて画像を表示させたいです。
発生している問題・エラーメッセージ
Chromeツールで指定したURLを別タブで開くようにして確認すると404エラーになります。
該当のソースコード
HTML
1<div class="introduction"> 2 <div class="profile"> 3 4 <div class="prof"> 5 <h2>おジャコ丸<span>について</span></h2> 6 <dl> 7 <dt>生年月日</dt> 8 <dd>10月12日</dd> 9 <dt>血液型</dt> 10 <dd>A型</dd> 11 <dt>出身地</dt> 12 <dd>岐阜県羽島市</dd> 13 <dt>メールアドレス</dt> 14 <dd>youthfulday8348.@gmail.com</dd> 15 </dl> 16 </div> 17 </div><!--profile--> 18```CSS 19 20```.introduction .profile { 21 position:relative; 22 width:100%; 23 background-image: url("/img/IMG_0300.jpg"); 24 background-repeat: no-repeat; 25 background-size: cover; 26 background-origin: content-box; 27 background-position: center; 28}
試したこと
使用しているVScodeでcommand+クリックで表示できることは確認しております。しかしWeb上では表示されず、開くと404になります。
同じCSS指定を他の幅、高さを指定している要素に対し指定しても表示されませんでした。
補足情報(FW/ツールのバージョンなど)
使用環境はMAMPを使用しPHPは8.0です。アパッチです。
ご参考にChromeツールのコンピューテッド内容を添付します。
background-attachment scroll background-clip border-box background-color rgba(0, 0, 0, 0) background-image url(http://localhost/img/IMG_0300.jpg) background-origin content-box background-position-x 50% background-position-y 50% background-repeat-x background-repeat-y background-size cover border-bottom-color rgb(85, 85, 85) border-bottom-style none border-bottom-width 0px border-image-outset 0 border-image-repeat stretch border-image-slice 100% border-image-source none border-image-width 1 border-left-color rgb(85, 85, 85) border-left-style none border-left-width 0px border-right-color rgb(85, 85, 85) border-right-style none border-right-width 0px border-top-color rgb(85, 85, 85) border-top-style none border-top-width 0px color rgb(85, 85, 85) display block font-family 游明朝体, "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif font-size 10px height 180px letter-spacing 1.5px line-height 20px margin-bottom 0px margin-left 0px margin-right 0px margin-top 0px outline-color rgb(85, 85, 85) outline-style none outline-width 0px padding-bottom 0px padding-left 0px padding-right 0px padding-top 0px position relative vertical-align baseline width 821.094px
回答2件
あなたの回答
tips
プレビュー