CSS:是否可以在 :before {content:url(..)} 元素中缩放图像?

发布于 2024-12-11 07:54:52 字数 738 浏览 0 评论 0原文

好吧,我承认我现在处于玩耍的状态......

我想要实现的目标: 在用于在我们的 Web 应用程序中添加一些元素的实用程序链接之前应该有一个加号。
如果这个标志可以根据用户设置的字体大小进行缩放,那就太好了。

我尝试过的:

<style type="text/css">
   a.addLink:before {
      content: url('images/add.png'); height: 1.2em;    
   }
</style>

<a class="addLink" href="#" onclick="freakyJSFunction">testlink</a> 

遗憾的是,高度属性被忽略了。 我知道我可以在每个链接之前插入一个普通的 ,但这并不像我们希望的那样可维护。

或者我可以使用一种奇特的 unicode 字符,例如

content: "\271a";  font-size:1.4em; color:green;

现在,我将采用 unicode 想法(刚刚在 IE8 中测试了这一点...不,IE 8 不显示该字符(“希腊十字”)。 ..:-( )...好吧,如果我找到一个合适的字符可以在 IE8、FF 甚至 chrome 中显示,我会采用 unicode 的想法。

不过,我想知道我最初的想法是否可行

ok, I admit I'm in the realm of playing around now...

What I want to achieve:
there should be a plus sign before utility links that are used to add some elements in our web application.
It would be good if this sign scales according to the font size the user has set.

What I've tried:

<style type="text/css">
   a.addLink:before {
      content: url('images/add.png'); height: 1.2em;    
   }
</style>

<a class="addLink" href="#" onclick="freakyJSFunction">testlink</a> 

sadly, the height attribute is ignored.
I know i could just insert a normal <img../> before every link, but that's not as maintainable as we want it to be.

Or I can use one of the fancy unicode characters, for example

content: "\271a";  font-size:1.4em; color:green;

for now, I'll go with the unicode idea (just tested this in IE8...nope, IE 8 doesn't display that character ("greek cross")...:-( )...ok, I will go with the unicode idea if I find a suitable charakter that is displayed in IE8, FF and maybe chrome..

still, I wonder if my initial idea is somehow doable

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

z祗昰~ 2024-12-18 07:54:52

在 css3 中,您有一个 background-size 属性。

http://jsfiddle.net/jQgQv/7/

但是背景图像无法应用content: 因此它在您使用 :before 的情况下不起作用 - 仅作为普通类。

In css3 you have a background-size property.

http://jsfiddle.net/jQgQv/7/

However background-image can't be applied trough content: so it won't work in your case using :before - only as a normal class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文