- ベストアンサー
CSSでWebサイトのピンクの部分に文字やリンクを追加する方法
- CSSを使用してWebサイトのピンクの部分に文字やリンクを追加する方法について教えてください。
- Webサイトのピンクの部分にテキストやリンクを追加する方法について詳しく教えてください。
- ピンクの部分にテキストやリンクを追加するためのCSSのコードや設定方法について教えてください。
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
以下のコードを参考にしてみてください。 ------------------------------------------------------------ <html> <head> <title>Webサイト</title> <style type="text/css"> body { background-color: #FFEAEF } <!-- #example { /* 親ボックス */ width: 750px; height: 900px; background-color: #FF95E4; position: absolute; top: 50px; left: 100px; ; } #example1 { /* position: absolute; */ width: 750px; height: 300px; top: 50 px; left: 150 px; background-color: #FFAAEA } #boxL { /* ボックス左 */ width: 150px; height: 600px; background-color: #ffffff; position: absolute; top: 150px; left: 1px; } #boxR { /* ボックス右 */ width: 599px; height: 600px; background-color: #ffffff; position: absolute; top: 150px; left: 150px; } #footer { width: 748px; height: 100px; background-color: #ffffff; position: absolute; top: 750px; left: 1px; } #footer2 { width: 748px; height: 100px; position: absolute; top: 850px; left: 1px; } --> </style> </head> <body> <div id="example"> <div id="example1"> <h1> テスト中 </h1> </div> <div id="boxL"> ボックス左 </div> <div id="boxR"> ボックス右 </div> <div id="footer"> <strong><center> ここに必要ならタグと共に記入 <BR> <a href="test2.html">top</a> </strong> </div> <div id="footer2"> <strong><center> AAAAAAAAAAAAAAAAAAAAAA </strong> </div> </div> </body> </html> ------------------------------------------------------------ #footer { と <div id="footer2"> を加えています。
お礼
ありがとうございました!! 助かりました