私はこれを何時間も理解しようとしてきたので、皆さんに尋ねるべきだと思いました.
だから私はサイトを持っています。画像、テキストなどのコンテンツを含むボックスがありました...
これは index.html でどのように見えるかです:
<div id="aust-agder">
<!-- agent address in the first region -->
<p style=" background: #111;
background: rgba(0,0,0,.8);
color: #eee;
position:absolute;
z-index:95;
top:500px;
left:1050px;
font: normal 20px 'Lucida Grande',Arial,sans-serif;
padding: 0.6em 1.2em;
text-shadow: 0 1px 0 #000;
-moz-border-radius: 1.6em;
-ms-border-radius: 1.6em;
-o-border-radius: 1.6em;
-webkit-border-radius: 1.6em;
border-radius: .6em; ">
Lillesand - Kjøreskole<br>
Vi vil gratulere A4 Trafikkskole med Digital Skiltløsning<br>
A4 Trafikkskole<br>
A: <a href=http://g.co/maps/xybpd>Elvegata 2A, 4608 Kristiansand S</a><br>
T: 38 02 56 00<br>
E: <a href=mailto:post@a-4.no>post@a-4.no</a><br>
Besøk hjemmesiden til <a href=http://www.a-4.no/>A4 Trafikkskole</a><br>
<img src=images/test.jpg>
</p>
</div>
これを html に入れると、サイトは次のようになります: http://iseeit.no/maptest/working/
html から削除して css ファイルに入れると、正しい場合は次のようになります。
.aust-agder{
background: #111;
background: rgba(0,0,0,.8);
color: #eee;
position:absolute;
z-index:95;
top:500px;
left:1050px;
font: normal 20px 'Lucida Grande',Arial,sans-serif;
padding: 0.6em 1.2em;
text-shadow: 0 1px 0 #000;
-moz-border-radius: 1.6em;
-ms-border-radius: 1.6em;
-o-border-radius: 1.6em;
-webkit-border-radius: 1.6em;
border-radius: .6em;
}
そしてindex.htmlで:
<div id="aust-agder">
<!-- agent address in the first region -->
Lillesand - Kjøreskole<br>
Vi vil gratulere A4 Trafikkskole med Digital Skiltløsning<br>
A4 Trafikkskole<br>
A: <a href=http://g.co/maps/xybpd>Elvegata 2A, 4608 Kristiansand S</a><br>
T: 38 02 56 00<br>
E: <a href=mailto:post@a-4.no>post@a-4.no</a><br>
Besøk hjemmesiden til <a href=http://www.a-4.no/>A4 Trafikkskole</a><br>
<img src=images/test.jpg>
</p>
</div>
サイトは次のようになります: http://iseeit.no/maptest/not/
私はCSSの専門家ではないので、すべて間違っているかもしれません。
問題を明確にしていただければ幸いです。お気軽にお問い合わせください。英語が下手で申し訳ありません:)
また、 text-decoration: none; ではリンクの色を削除できないようです。そのための解決策はありますか?