科目を登録するサイトを作成していて、画像の色と被るためリンクや文字の色を変更しようと思っています。
しかし、ローカルではリンクの色や文字の色の変更がされるのですが、サーバーにあげると文字の色のみが変更され、リンクの色が変更されませんでした。
HTML
1<html> 2 <head> 3 <meta charset="UTF-8"> 4 <meta name="viewport" content="width=device-width,initial-scale=1"> 5 <title>test</title> 6 <style type="text/css"> 7 8 body { 9 10 background-image: url(picture/background%20picture1.jpg); 11 12 } 13 .center{ 14 font-size: 1.5rem; 15 color: white; 16 text-align: center 17 } 18 a:link{ 19 color: red; 20 } 21 </style> 22 </head> 23 <body> 24 <h1 class="center">登録サイト</h1> 25 <h2 class="center">あなたの年次を選択してください。</h2> 26 <a href="html/first.html"><h3 align="center">1年次 検索機能なし版</h3></a> 27 <a href="first-plus.html"><h3 align="center">1年次 検索機能・手打ち機能追加版</h3></a> 28 <a href="second.html"><h3 align="center">2年次以上 検索機能なし版</h3></a> 29 <a href="second-plus.html"><h3 align="center">2年次以上 検索機能・手打ち機能追加版</h3></a> 30 </body> 31</html>
補足説明
サーバーにはxfreeのHTMLサーバーを使用しています。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。