本文介绍了CSS多文本装饰的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想让h2下划线并同时闪烁。
有没有办法实现只修改h2的CSS样式?
I want to have the h2 underlined and blinking at the same time.
Is there any way to achieve this modifying only the CSS style of h2?
例如:
h2{
text-decoration:underline,blink;
}
或
h2{
text-decoration:underline;
text-decoration:blink;
}
*以上作品均不适用
如果没有这样的方式,最快/最简单的方法是什么?
if there is no such way what is the fastest/easiest way to do it?
推荐答案
空格分隔它们:
text-decoration: underline blink;
这篇关于CSS多文本装饰的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!