search
HomeWeb Front-endCSS TutorialThree CSS tips you must know

The fierce competition between various browsers means that more and more people are now beginning to use devices that support the latest and most advanced W3C Web standards to access the Internet in a more interactive way. This means that we can finally take advantage of more powerful and flexible CSS to create simpler and better-maintained browser front-end code. Now let's take a look at some exciting CSS features that you may not be aware of yet.

Use attr() to display HTML attribute values ​​in CSS

attr()The function has appeared as early as the CSS 2.1 standard, but it is only now becoming generally popular. It provides a clever way to use attributes on HTML tags in CSS, which in many cases can help you save the process that previously required Javascript processing.

To use this feature, you need to use three elements: a :before or :after CSS pseudo-class style, .content attribute, and an attr() expression with the name of the HTML attribute you want to use. For example, if you want to display the value of the data-prefix attribute on the

title, you can write like this:

h3:before {
    content: attr(data-prefix) " ";
    }

    <h3 id="This-nbsp-is-nbsp-a-nbsp-heading">This is a heading</h3>

Obviously, this example does not display How useful it is, just shows its basic usage. Let's try a more useful example. An excellent application of attr() is to display links to pages when the user prints the page. To achieve this, you can write like this:

@media print {
    a:after {
    content: " (link to " attr(href) ") ";
    }
    }

    <a href="example.com">Visit our home page</a>

Once you know this technique, you will be surprised at how convenient it can bring to your work many times!

Tips: In the new version of the CSS3 standard, the attr() function has been extended and can be used in various CSS tags. In CSS2.1 attr() always returns a string. In CSS3 attr() can return many different types.

Use counter() to automatically add serial numbers to the list

Another function already supported in CSS 2.1 is counter(). Using it, you can conveniently Add serial numbers to page titles, blocks, and various other consecutive page content. With it, you don't have to be limited to using

    to achieve this effect. You can use custom number sequences on the page more flexibly.

    Counter-reset definition and usage

    The counter-reset attribute sets the value of the counter for the number of occurrences of a certain selector. Default is 0.

    Using this property, the counter can be set or reset to any value, either positive or negative. If number is not provided, it defaults to 0.

    Note: If "display: none" is used, the counter cannot be reset. If you use "visibility: hidden" you can reset the counter.

    Note: Internet Explorer 8 (and later) supports the counter-reset attribute if !DOCTYPE is specified.

    counter-resetPossible values

    Value Description
    none default. The selector counter cannot be reset.
    id number

    id Defines the selector, id, or class that resets the counter.

    number Sets the value of the counter for the number of occurrences of this selector. Can be positive, zero, or negative.

    inherit Specifies that the value of the counter-reset attribute should be inherited from the parent element.


    The key is that it is really simple: add counter( to the content attribute in the :before pseudo-class ):

    body {
        counter-reset: heading;
        }
    
        h4:before {
        counter-increment: heading;
        content: "Heading #" counter(heading) "."; 
        }

    If you want to know more about this counter zeroing and incrementing method, please refer to the Mozilla
    Developer Network page on this topic. There is an excellent example of how to use nested counters.

    Using calc() to do arithmetic

    Last, but not least, let’s talk about the calc() function. Calc is the abbreviation of the English word calculate. It is a new function of CSS3 and is used to specify the length of elements. This function allows you to perform simple arithmetic calculations, such as calculating the length and width of an element, without having to write unmaintainable Javascript code. This function supports all simple basic arithmetic operations, including addition, subtraction, multiplication and division.

    When there are "+" and "-" in the expression, there must be spaces before and after them. For example, "widht: calc(12%+5em)" is wrong to write without spaces; expression When there are "*" and "/", there can be no spaces before and after them, but it is recommended to leave spaces. The browser's compatibility with calc() is pretty good. It is well supported in IE9+, FF4.0+, Chrome19+, and Safari6+. It is also necessary to add the identifier of each browser manufacturer in front of it, but unfortunately, Most mobile browsers do not support it yet, and currently only "firefox for android 14.0" supports it.

    Suppose you want to create an element whose width takes up the full width of its parent element, but leave some pixels wide for other uses:

    .parent {
        width: 100%;
        border: solid black 1px;
        position: relative;
        }
    
        .child {
        position: absolute;
        left: 100px;
        width: calc(90% - 100px);
        background-color: #ff8;
        text-align: center;
        }

    Beautiful, isn’t it? ?

    We can find more and more clearly that CSS has matured to the point where it can replace JavaScript in some methods, greatly simplifying the work of web developers. You'd be foolish not to start taking advantage of these features.

    The above is the detailed content of Three CSS tips you must know. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

    利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

    css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

    在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

    css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

    区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

    css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

    在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

    css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

    转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

    rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

    在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

    css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

    在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

    怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

    在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    MinGW - Minimalist GNU for Windows

    MinGW - Minimalist GNU for Windows

    This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    VSCode Windows 64-bit Download

    VSCode Windows 64-bit Download

    A free and powerful IDE editor launched by Microsoft

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor