divタグの場合は中央ぞろえができるのですが、<a>のリンクの場合だとフォントサイズと色の変更だけが効き、中央ぞろえができませんでした。
<html> <head> <meta charset="UTF-8"> <title>時間割登録用サイト</title> <style type="text/css"> body { background-image: url(picture/background%20picture1.jpg); } .top{ font-size: 1.75rem; color: white; text-align: center; } a:link{ font-size: 1.25rem; color: red; text-align: center; } a:visited { font-size: 1.25rem; color: yellow; text-align: center; } </style> </head> <body> <div class="top">時間割登録サイト</div> <div class="top">あなたの年次を選択してください。</div> <a href="HTML/first.html">1年次 検索機能なし版</a> <a href="first-plus.html">1年次 検索機能・手打ち機能追加版</a> <a href="second.html">2年次以上 検索機能なし版</a> <a href="second-plus.html">2年次以上 検索機能・手打ち機能追加版</a></div> </body> </html>
試したこと
<a>タグ全体を<diV>で囲んで中央揃えにしようともしたのですが、text-alignが効きませんでした
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/11/22 02:58
2020/11/22 03:05