search
HomeWeb Front-endCSS TutorialShare how to use the box-shadow attribute in CSS3, including inner shadow box-shadow: inset

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;

    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;

    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;

    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;" /*下边阴影*/ >

    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
    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 Inclusion: Choosing the Right Method for Your ProjectCSS Inclusion: Choosing the Right Method for Your ProjectMay 16, 2025 am 12:02 AM

    ThebestmethodforincludingCSSdependsonprojectsizeandcomplexity:1)Forlargerprojects,useexternalCSSforbettermaintainabilityandperformance.2)Forsmallerprojects,internalCSSissuitabletoavoidextraHTTPrequests.Alwaysconsidermaintainabilityandperformancewhenc

    This Isn't Supposed to Happen: Troubleshooting the ImpossibleThis Isn't Supposed to Happen: Troubleshooting the ImpossibleMay 15, 2025 am 10:32 AM

    What it looks like to troubleshoot one of those impossible issues that turns out to be something totally else you never thought of.

    @keyframes vs CSS Transitions: What is the difference?@keyframes vs CSS Transitions: What is the difference?May 14, 2025 am 12:01 AM

    @keyframesandCSSTransitionsdifferincomplexity:@keyframesallowsfordetailedanimationsequences,whileCSSTransitionshandlesimplestatechanges.UseCSSTransitionsforhovereffectslikebuttoncolorchanges,and@keyframesforintricateanimationslikerotatingspinners.

    Using Pages CMS for Static Site Content ManagementUsing Pages CMS for Static Site Content ManagementMay 13, 2025 am 09:24 AM

    I know, I know: there are a ton of content management system options available, and while I've tested several, none have really been the one, y'know? Weird pricing models, difficult customization, some even end up becoming a whole &

    The Ultimate Guide to Linking CSS Files in HTMLThe Ultimate Guide to Linking CSS Files in HTMLMay 13, 2025 am 12:02 AM

    Linking CSS files to HTML can be achieved by using elements in part of HTML. 1) Use tags to link local CSS files. 2) Multiple CSS files can be implemented by adding multiple tags. 3) External CSS files use absolute URL links, such as. 4) Ensure the correct use of file paths and CSS file loading order, and optimize performance can use CSS preprocessor to merge files.

    CSS Flexbox vs Grid: a comprehensive reviewCSS Flexbox vs Grid: a comprehensive reviewMay 12, 2025 am 12:01 AM

    Choosing Flexbox or Grid depends on the layout requirements: 1) Flexbox is suitable for one-dimensional layouts, such as navigation bar; 2) Grid is suitable for two-dimensional layouts, such as magazine layouts. The two can be used in the project to improve the layout effect.

    How to Include CSS Files: Methods and Best PracticesHow to Include CSS Files: Methods and Best PracticesMay 11, 2025 am 12:02 AM

    The best way to include CSS files is to use tags to introduce external CSS files in the HTML part. 1. Use tags to introduce external CSS files, such as. 2. For small adjustments, inline CSS can be used, but should be used with caution. 3. Large projects can use CSS preprocessors such as Sass or Less to import other CSS files through @import. 4. For performance, CSS files should be merged and CDN should be used, and compressed using tools such as CSSNano.

    Flexbox vs Grid: should I learn them both?Flexbox vs Grid: should I learn them both?May 10, 2025 am 12:01 AM

    Yes,youshouldlearnbothFlexboxandGrid.1)Flexboxisidealforone-dimensional,flexiblelayoutslikenavigationmenus.2)Gridexcelsintwo-dimensional,complexdesignssuchasmagazinelayouts.3)Combiningbothenhanceslayoutflexibilityandresponsiveness,allowingforstructur

    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

    Video Face Swap

    Video Face Swap

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

    Hot Article

    Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Nordhold: Fusion System, Explained
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Clair Obscur: Expedition 33 - How To Get Perfect Chroma Catalysts
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

    VSCode Windows 64-bit Download

    VSCode Windows 64-bit Download

    A free and powerful IDE editor launched by Microsoft