Home Web Front-end CSS Tutorial Share how to use the box-shadow attribute in CSS3, including inner shadow box-shadow: inset

Share how to use the box-shadow attribute in CSS3, including inner shadow box-shadow: inset

Sep 10, 2018 am 11:35 AM

There are many attributes in CSS. Some attributes are easy to forget if they are not used for a long time, especially those attributes that require setting multiple values. For example: box-shadow. Every time I use box-shadow in CSS3, I can’t remember how to use box-shadow. I have to look up the information to achieve the corresponding effect. Now let’s summarize, how to use box-shadow and how to use box-shadow. The use of inner shadows makes it easier to view later.

Related recommendations:

1. Online demonstration: "shadowbox-shadow"

2. Video tutorial: " box-shadow

##1. box-shadow syntax

box-shadow: none | inset (optional value, no Set, for outer projection, set, for inner projection) x-offset (horizontal offset of shadow, positive direction is right) y-offset (vertical offset of shadow, positive direction is bottom) blur-radius (shadow blur radius, is positive, 0 means no blur effect, the larger the value, the blurrier it is) spread-radius (shadow expansion radius, can be positive or negative) color (set the color of the object's shadow)

Attribute value description:

1. Shadow type: This parameter is optional. The default projection method is outer shadow; if the unique value "inset" is taken, the outer shadow will be turned into an inner shadow.

2. X-offset: refers to The horizontal offset of the shadow, its value can be positive or negative, positive value, the shadow is on the right side of the object, negative value, the shadow is on the left side of the object
3. Y-offset: refers to the vertical offset of the shadow, its The value can also be positive or negative. For positive values, the shadow is at the bottom of the object. For negative values, the shadow is at the top of the object.
4. Shadow blur radius: This parameter is optional and can only be positive if its value When it is 0, it means that the shadow has no blurring effect. The larger the value, the blurr the edge of the shadow.
5. Shadow expansion radius: This parameter is optional. Its value can be positive or negative. If it is positive, the entire shadow will be extended. Expand, otherwise, shrink
6. Shadow color: This parameter is optional. When no color is set, the browser will use the default color, but the default color of each browser is different, especially in Safari under the webkit kernel. and chrome browser will be colorless, that is, transparent, it is recommended not to omit this parameter.

Note: Multiple layers of shadow, the innermost layer has the highest priority, and then decreases in sequence. Use commas "," to separate.

    2. Practical application of box-shadow

    Example 1: Do not set the X-axis and Y-axis, set the shadow blur radius to 15px , it will act within its own radius, color.

    box-shadow: 0 0 15px #f00;
    Copy after login

    Rendering:

    Share how to use the box-shadow attribute in CSS3, including inner shadow box-shadow: inset

    Example 2: Set the X-axis and Y-axis to positive values ​​(positive values ​​of the X-axis to the right and the Y-axis downward)

    box-shadow:4px 4px 15px #f00;
    Copy after login

    Rendering:

    Share how to use the box-shadow attribute in CSS3, including inner shadow box-shadow: inset##Example 3: box-shadow: inset is the internal shadow of box-shadow. It is the same as the above writing. The only difference is that a inset

    box-shadow:0 0 15px #f00 inset;
    Copy after login

    Rendering:

    Share how to use the box-shadow attribute in CSS3, including inner shadow box-shadow: insetExample 4: Set the four sides of the square to have different colors, but the shadow blur radius is 10px

    box-shadow:-10px 0px 10px red,   /*左边阴影*/ 
                0px -10px 10px black,  /*上边阴影*/ 
                10px 0px 10px green,  /*右边阴影*/ 
                0px 10px 10px blue;" /*下边阴影*/ >
    Copy after login

    Rendering:

    Share how to use the box-shadow attribute in CSS3, including inner shadow box-shadow: insetThe above introduces how to use box-shadow in CSS3, how to use box-shadow: inset internal shadow, and the actual application of box-shadow. As for what kind of effects to set around the box-shadow, it depends on the specific requirements.

    The above is the detailed content of Share how to use the box-shadow attribute in CSS3, including inner shadow box-shadow: inset. For more information, please follow other related articles on the PHP Chinese website!

    Statement of this Website
    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

    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

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Vue 3 Vue 3 Apr 02, 2025 pm 06:32 PM

    It's out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.

    Can you get valid CSS property values from the browser? Can you get valid CSS property values from the browser? Apr 02, 2025 pm 06:17 PM

    I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That's like this.

    A bit on ci/cd A bit on ci/cd Apr 02, 2025 pm 06:21 PM

    I'd say "website" fits better than "mobile app" but I like this framing from Max Lynch:

    Stacked Cards with Sticky Positioning and a Dash of Sass Stacked Cards with Sticky Positioning and a Dash of Sass Apr 03, 2025 am 10:30 AM

    The other day, I spotted this particularly lovely bit from Corey Ginnivan’s website where a collection of cards stack on top of one another as you scroll.

    Using Markdown and Localization in the WordPress Block Editor Using Markdown and Localization in the WordPress Block Editor Apr 02, 2025 am 04:27 AM

    If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?

    Comparing Browsers for Responsive Design Comparing Browsers for Responsive Design Apr 02, 2025 pm 06:25 PM

    There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing

    Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Apr 05, 2025 pm 05:51 PM

    Questions about purple slash areas in Flex layouts When using Flex layouts, you may encounter some confusing phenomena, such as in the developer tools (d...

    How to Use CSS Grid for Sticky Headers and Footers How to Use CSS Grid for Sticky Headers and Footers Apr 02, 2025 pm 06:29 PM

    CSS Grid is a collection of properties designed to make layout easier than it’s ever been. Like anything, there's a bit of a learning curve, but Grid is

    See all articles