CSS伪元素应用元素的第一个字符

CSS伪元素应用元素的第一个字符

本文介绍了CSS伪元素应用元素的第一个字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在h1标​​签中有以下内容:(Hello World),所以我添加以下到我的css更改此元素的第一个字符:

I have the following content in my h1 tag: "(Hello World)" so I add the following to my css to change the first character of this element:

h1:first-letter { font-size:63px; color:#510007; font-family:Helvetica; }

但是,我注意到,第一个字母只是字母,所以有任何解决方法应用这种风格的第一个字符?在这种情况下是(。

But, as I noticed, first-letter is only for letters, so is there any workarounds to apply this style to the first char? Which in this case is "(".

推荐答案

从:

因此,您的括号字母H由:first-letter ,因为被视为标点符号,而不是字母。

So your bracket and the letter H are selected by :first-letter, because ( is considered a punctuation symbol, not a letter.

有两种解决方法: p>

There are two workarounds:


  1. 将开头括号括在 span 标签中:

<!-- To style both (), wrap both in <span> tags -->
<h1><span>(</span>Hello World)</h1>

和目标 h1 span

h1 span {
    font-size: 63px;
    color: #510007;
    font-family: Helvetica;
}


  • 从文字中删除括号:

  • Drop the brackets from your text:

    <h1>Hello World</h1>
    

    并使用:before code>:after 改为(不支持在IE7及更早版本):

    and use :before and/or :after instead (not supported in IE7 and older):

    /* To style both (), use h1:before, h1:after */
    h1:before {
        font-size: 63px;
        color: #510007;
        font-family: Helvetica;
    }
    
    h1:before { content: '('; }
    h1:after { content: ')'; }
    


  • 这篇关于CSS伪元素应用元素的第一个字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

    07-31 06:24