Using text shadow and element shadow effects in CSS

Using text shadow and element shadow effects in CSS

Introduction to Text Shadows

  • In CSS , use the text-shadow property to set the text shadow. This property has a total of 4 attribute values: horizontal shadow, vertical shadow, (clarity or blur distance), and shadow color.
  • text-shadow property value description, in text shadow practice: the first value is to set the horizontal movement of the shadow, the second value is to set the vertical movement of the shadow, the third value is to set the shadow blur distance, and the fourth value is to set the shadow color.
  • text-shadow property value can be set to a negative number.
  • You can set multiple shadows for text by separating them with commas.
text-shadow: 1px 2px 3px red ,1px 2px 6px rebeccapurple;

Text shadow practice

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Text Shadow</title>
  <style>  
    div{
      font-size: 60px;
      color: seagreen;
      text-shadow: 1px 2px 3px red;
    }
  </style>
</head>

<body>
   <div>Smile is the original belief, come on. </div>
</body>

</html> 

Introduction to Elemental Shadows

Use box-shadow property in CSS to set a shadow on an element.

  • box-shadow property value description is as follows: the first value is to set the horizontal movement of the shadow, the second value is to set the vertical movement, the third value is to set the shadow clarity, the fourth value is to set the shadow size, the fifth value is to set the shadow color, and the sixth value is to set the shadow position. The default shadow position is outside, and inset sets the shadow to the inside.
  • box-shadow property value can be set to a negative number.
  • box-shadow property value can set multiple shadows by separating them with commas.

Elemental Shadow Practice

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Element Shadow</title>
  <style>  
    div{
      width: 100px;
      height: 100px;
      border: 2px solid red;
      box-shadow: 3px 6px 8px darkblue ,4px 8px 6px rebeccapurple inset;
    }
  </style>
</head>

<body>
   <div>Smile is the original belief, come on. </div>
</body>

</html> 

Summarize

The above is what I introduced to you about using text shadow and element shadow effects in CSS. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  Detailed steps for installing rockerChat in docker and setting up a chat room

>>:  select the best presets to create full compatibility with all browsersselect

Recommend

Summary of Linux commands commonly used in work

Use more open source tools such as docker and kub...

Flex layout makes adaptive pages (syntax and examples)

Introduction to Flex Layout Flex in English means...

Simple CSS text animation effect

Achieve results Implementation Code html <div ...

Essential bonus items for optimizing and packaging the front end of Vue projects

Table of contents Preface 1. Routing lazy loading...

How to use http and WebSocket in CocosCreator

Table of contents 1. HttpGET 2. HTTP POST WebSock...

How to configure two-way certificate verification on nginx proxy server

Generate a certificate chain Use the script to ge...

Docker data management and network communication usage

You can install Docker and perform simple operati...

Will this SQL writing method really cause the index to fail?

Preface There are often some articles on the Inte...

Use Docker to run multiple PHP versions on the server

PHP7 has been out for quite some time, and it is ...

Detailed explanation of simple snow effect example using JS

Table of contents Preface Main implementation cod...

TypeScript enumeration basics and examples

Table of contents Preface What are enums in TypeS...

Analysis of the implementation of MySQL statement locking

Abstract: Analysis of two MySQL SQL statement loc...

The most commonly used HTML escape sequence

In HTML, <, >, &, etc. have special mean...

HTML table markup tutorial (37): background image attribute BACKGROUND

Set the background image for the table header. Yo...