CSS3 Flexbox 在 Webkit 中失败(Chrome 和 Safari)
<nav>
<div id="navbox" style="display: box; box-orient: horizontal;">
<img src="../gfx/lg_logo.png"></img>
<div>tagline</div>
</div>
</nav>
在 Chrome 的检查器中,div“navbox”的 Flexbox 属性被划掉,旁边有黄色警告图标。不幸的是,谷歌没有任何类型的工具提示或对其黄色图标的解释,所以我只能猜测为什么它拒绝我的 display: box 属性。这里有什么问题吗?
<nav>
<div id="navbox" style="display: box; box-orient: horizontal;">
<img src="../gfx/lg_logo.png"></img>
<div>tagline</div>
</div>
</nav>
In Chrome's inspector, the flexbox properties for the div "navbox" is crossed out with the yellow warning icon next to it. Unfortunately, Google doesn't have any sort of tooltip or explanation for its yellow icons so I'm left guessing as to why its rejecting my display: box property. What is wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加供应商前缀。
顺便说一句,
img
元素没有结束标记。Try adding vendor prefixes.
BTW,
img
element doesn't have closing tag.