search
HomeWeb Front-endCSS TutorialHow to use CSS to achieve the shadow effect of elements

How to use CSS to achieve the shadow effect of elements

The method of using CSS to achieve the projection effect of elements requires specific code examples

In web design, the projection effect can add a sense of three-dimensionality and layering to page elements. Make the page richer and more vivid. CSS (Cascading Style Sheets) provides a variety of methods and properties for implementing drop shadow effects.

1. The box-shadow attribute
The box-shadow attribute is a new attribute in CSS3 that is used to achieve element shadow effects. By adding the box-shadow attribute to an element, you can achieve a shadow effect on the element, making the element float out of the page and enhancing the three-dimensional effect.

The syntax of the box-shadow attribute is as follows:
box-shadow: h-shadow v-shadow blur spread color inset;

The specific meaning of each parameter is as follows:

  1. h-shadow: horizontal shadow position, which can be positive (to the right) or negative (to the left);
  2. v-shadow: vertical shadow position, which can be positive (to the left) down) or negative value (upward);
  3. blur: blur distance, the value is between 0 and positive infinity. The larger the value, the higher the degree of blur;
  4. spread: shadow Size expansion. When the value is negative, the shadow will shrink to the inside of the element. When the value is positive, the shadow will expand to the outside of the element.
  5. color: Shadow color, you can use color value, RGB value or Hexadecimal value;
  6. inset: Optional value, if specified, the shadow effect will become an inner shadow.

The following is a specific code example that implements a text box with a shadow effect:

<!DOCTYPE html>
<html>
<head>
    <style>
        .shadow-box {
            width: 200px;
            height: 40px;
            padding: 10px;
            border: none;
            border-radius: 5px;
            box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.5);
        }
    </style>
</head>
<body>
    <input type="text" class="shadow-box" placeholder="请输入内容">
</body>
</html>

In the above code, by adding class to the input box as shadow- The box style implements a text box with a shadow effect. The value of the box-shadow attribute is set to "2px 2px 5px 2px rgba(0, 0, 0, 0.5)", which means that the horizontal and vertical shadow positions are both 2px, the blur distance is 5px, the shadow size is expanded to 2px, and the shadow color is black , with a transparency of 0.5.

2. Text-shadow attribute
In addition to the box-shadow attribute, CSS also provides the text-shadow attribute to achieve the shadow effect of text. By adding the text-shadow attribute to the text element, you can add a shadow effect to the text to make it more prominent and three-dimensional.

The syntax of the text-shadow attribute is as follows:
text-shadow: h-shadow v-shadow blur color;

The specific meaning of each parameter is as follows:

  1. h-shadow: horizontal shadow position, which can be positive (to the right) or negative (to the left);
  2. v-shadow: vertical shadow position, which can be positive (downward) Or negative value (upward);
  3. blur: blur distance, the value is between 0 and positive infinity. The larger the value, the higher the degree of blur;
  4. color: shadow color, You can use color values, RGB values, or hexadecimal values.

The following is a specific code example that implements a title with a shadow effect:

<!DOCTYPE html>
<html>
<head>
    <style>
        .shadow-title {
            font-size: 24px;
            color: #333;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
    </style>
</head>
<body>
    <h1 id="投影效果标题">投影效果标题</h1>
</body>
</html>

In the above code, add the class shadow-title to the title element The style implements a title with a drop shadow effect. The value of the text-shadow attribute is set to "2px 2px 5px rgba(0, 0, 0, 0.5)", which means that the horizontal and vertical shadow positions are both 2px, the blur distance is 5px, the shadow color is black, and the transparency is 0.5.

Through the above code examples, we can see that the shadow effect of elements can be easily achieved by using the box-shadow property and text-shadow property of CSS. In actual development, we can adjust parameter values ​​and color settings according to specific needs to achieve different projection effects to enhance the visual effects and user experience of the page.

The above is the detailed content of How to use CSS to achieve the shadow effect of elements. 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
Demystifying Screen Readers: Accessible Forms & Best PracticesDemystifying Screen Readers: Accessible Forms & Best PracticesMar 08, 2025 am 09:45 AM

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

Create a JavaScript Contact Form With the Smart Forms FrameworkCreate a JavaScript Contact Form With the Smart Forms FrameworkMar 07, 2025 am 11:33 AM

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

Adding Box Shadows to WordPress Blocks and ElementsAdding Box Shadows to WordPress Blocks and ElementsMar 09, 2025 pm 12:53 PM

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Working With GraphQL CachingWorking With GraphQL CachingMar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte TransitionMaking Your First Custom Svelte TransitionMar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Classy and Cool Custom CSS Scrollbars: A ShowcaseClassy and Cool Custom CSS Scrollbars: A ShowcaseMar 10, 2025 am 11:37 AM

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand

Show, Don't TellShow, Don't TellMar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

What the Heck Are npm Commands?What the Heck Are npm Commands?Mar 15, 2025 am 11:36 AM

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.

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尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),