作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在堡垒图标中使用了菱形符号,如果我在 css 中定位 i 标签,图标会突出显示(附上屏幕截图)但相对和绝对定位不起作用。 (还附有源代码。)screen shot of the diamond affected by targeting the i tag
HTML
<div id="test"><i class="fa fa-diamond" style="color:red"></i> Diamond</div>
CSS
i {
position: absolute;
top: 120px;
right: 30px;
}
最佳答案
你需要在 CSS 中做到这一点
#test{position: relative;)
另外,仅供引用,它的 fontAwesome :)
关于html - 相对和绝对位置不适用于令人敬畏的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30984928/
我是一名优秀的程序员,十分优秀!