适合
我有这个标记:
#widget1 {
height:100px;
width:200px;
}
<div class="widget" id="widget1">
<object data="foo.svg" type="image/svg+xml" />
</div>
我设法使
I have this markup:
#widget1 {
height:100px;
width:200px;
}
<div class="widget" id="widget1">
<object data="foo.svg" type="image/svg+xml" />
</div>
I managed to make the <object>
element fill up the outer <div>
, but the inner foo.svg file has its own ideas how big it is. I need foo.svg (which consists of an <svg>
element, of course) to be the same size as <object>
and <div>
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个问题在 svg prime 中得到了回答(带有示例) 。
tl;dr 摘要:
This is answered (with examples) in the svg primer.
tl;dr summary:
将其添加到父 div
add this to the parent div
尝试添加:
Try to add: