1
我試圖得到這個工作的接觸面積:http://jsfiddle.net/y8zx3/添加圖片到列表通過SVG
CSS:
#container #sidebar ul.kontakt { list-style: none }
#container #sidebar ul.kontakt li {
/* display: block; */
line-height: 70px;
margin-right: 50px;
float: right;
display: list-item;
}
#container #sidebar ul.kontakt li svg {
/* position: relative;;*/
float: left;
}
#container #sidebar ul.kontakt li a {
/* display: block; */
line-height: 70px;
margin: 0;
float: right;
}
HTML:
<h1>Kontakt</h1>
<p>Schön, das Sie uns kontaktieren wollen. Sie können uns entweder per Kontaktformular erreichen, oder ganz traditionell per Telefon, Email oder Fax.</p>
<ul class="kontakt">
<li>
<svg height="50px" id="Layer_1" style="enable-background:new 0 4 512 512;" version="1.1" viewBox="0 0 512 512" width="512px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g>
<polygon points="448,384 448,141.8 316.9,241.6 385,319 383,321 304.1,251.4 256,288 207.9,251.4 129,321 127,319 195,241.6 64,142 64,384 " />
<polygon points="439.7,128 72,128 256,267.9 " />
</g>
</svg><a href="mailto:[email protected]">[email protected]</a>
</li>
<li>+49 (0) 7127 980 1493
<li>+49 (0) 7127 980 1489</li>
<li>+49 (0) 160 16 25 175</li>
</ul>
我希望電子郵件圖標在列表的左側,但不想使用CSS背景圖像做到這一點。我怎麼能做到這一點?現在圖像在李的上方,而不在前面。順便說一下這個圖標是一個內聯SVG。見http://jsfiddle.net/y8zx3/的充分合作
適用於jsfiddle,但不適用於chrome。 – geek
現在它工作!謝謝 – geek