如何使div的黑色背景可见?

时间:2013-11-28 17:57:23

标签: css html svg background

如何使div的黑色背景可见?

<svg version="1.1" baseProfile="full" width="300" height="200" xmlns="http://www.w3.org/2000/svg">
    <rect width="100%" height="100%" fill="red" />
    <circle cx="150" cy="100" r="80" fill="green" />
    <text x="150" y="125" font-size="60" text-anchor="middle" fill="white">SVG</text>
  </svg>
  <div style="background:black;color:white;margin-top:-50px;">
    <h1>Hello Plunker!</h1>
  </div>

http://plnkr.co/edit/rHlE2AdfkR81zVjE3oez?p=preview

感谢。

1 个答案:

答案 0 :(得分:2)

relative position提供给黑色div。

Link.