search
HomeWeb Front-endCSS TutorialFront-end development CSS3 technology experience sharing

Recently, I have summarized some knowledge of the front-end to facilitate my own review in the future, and also share it with everyone, hoping that everyone will avoid detours. This article mainly summarizes the relevant knowledge in CSS3. Friends in need can refer to it. I hope it will be useful to you.

1. Set font (compatible with all browsers)

@font-face {
font-family: 'iconfont';
src: url("fonts/iconfont/iconfont.eot");
src: url("fonts/iconfont/iconfont.eot?#iefix") format("embedded-opentype"), 
url("fonts/iconfont/iconfont.ttf") format("truetype"), 
url("fonts/iconfont/iconfont.woff") format("woff"),
 url("fonts/iconfont/iconfont.svg#icomoon") format("svg");
font-weight: normal;
font-style: normal; }
@font-face { font-family : name ; src : url( url ) ; sRules }

Description:

name: Font name

url: Use absolute or relative addresses to specify OpenType fonts

sRules: Style sheet definitions

Set the fonts embedded in HTML documents.

@font-face { font-family: dreamy; font-weight: bold; src: url(http://www.example.com/font.eot); }

2. div[class^="test"]

Set the background color of all div elements whose class attribute value starts with "test" within the div:

div[class^="test"]
{
background:#ffff00;
}

3. [class*="abc"]

The value of class contains elements of "abc".

div[class*="abc"]

represents only the style with class=abc in the div

4. Specify the background style of the last p tag

p:last-child{ background:#ff0000;}

5. Display When the device resolution is minimum 768 and maximum 979, abc (CSS3) is displayed

@media (min-width: 768px) and (max-width: 979px) {
.abc{}
}

ie6-ie9 supports

<style>
@media screen and (min-width: 1201px) {
.y-row {
width: 1200px;
border:1px solid #333; height:300px;
min-width: 1200px; } }
@media screen and (max-width: 1200px) {
.y-row {
width: 900px;
border:1px solid #333; height:300px;
min-width: 900px; } }
</style>
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->

6, div > span (not supported by IE6)

div > span{font 12px}

The son span style within the div tag is font 12px, and the grandson span within the div does not work and has priority

7. Font shadow

.blue { background:#01dbff; text-shadow:2px 2px 2px #09a5ef; }

Shadow font left distance bottom distance shadow distance Range shadow color

Font background font shadow

8, box shadow

-moz-border-radius:0px 5px 5px 0px; -webkit- border-radius:0px 5px 5px 0px; border-radius:0px 5px 5px 0px; -moz-box-shadow:0px 0px 1px #fff inset; -webkit-box-shadow:0px 0px 1px #fff inset; box-shadow: 0px 0px 1px #fff inset;

-moz represents the private properties of the firefox browser

-ms represents the private properties of the IE browser

-webkit represents the private properties of chrome and safari

-o represents opera Apple browser

Settings

border-radius:0px 5px 5px 0px; means the upper right and lower right rounded corners of the border are 5px

box-shadow:0px 0px 1px #fff inset; means the border spacing is 0 to the left, 0 to the top and 1px. The shadow range is white.

With inset, it means the shadow inside the box. Without inset, it means the shadow outside the box.

Note: box-shadow:0px 0px 1px #fff

When the first value is 0, it means that the shadow of the left and right borders is 1px range

The first value is a positive integer, which means the left Border shadow

The first value is a negative integer representing the shadow of the right border

Similarly

The second value is 0 representing the shadow of the upper and lower borders

The two positive integers represent the distance of the 1px shadow from the upper border.

The first value is a negative integer and represents the bottom border shadow setting.

border-radius rounded corners

9, :first-letter

p:first-letter{font-size:20px}

means that the size of the first word in the p tag is 20px

10. div:first-line { color:red;font-size:16px; }

means the first line of text in the DIV is red and the font is 16px

11, p a:first-child { color: green }

represents the first a hyperlink in the p box, the font color is green

12, p :before { content: "I am here" }

represents adding a piece of content before the p tag object: "I am here"

13. table:after { content : END OF TABLE }

means displaying the content "END OF TABLE" after the table object.

14. Single colon and double colon

Pseudo element consists of double colon and pseudo element name. The double colon was introduced in the current specification to distinguish pseudo-classes from pseudo-elements. However, pseudo-classes are compatible with existing styles, and browsers need to support old pseudo-classes at the same time, such as :first-line, :first-letter, :before, :after, etc.

Now you can fully answer the question in the title. For the pseudo-elements that existed before CSS2, such as :before, the single colon and the double colon::before have the same effect.

So, if your website only needs to be compatible with webkit, firefox, opera and other browsers, it is recommended to use double colon writing method for pseudo elements. If it has to be compatible with IE browser, it is better to use CSS2 single colon writing method. Safety.

15. .uploader input[type=file]{}

means that the class is uploader and the input label attribute in the box is set to type=file.

The above is the detailed content of Front-end development CSS3 technology experience sharing. 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
Weekly Platform News: Web Apps in Galaxy Store, Tappable Stories, CSS SubgridWeekly Platform News: Web Apps in Galaxy Store, Tappable Stories, CSS SubgridApr 14, 2025 am 11:20 AM

In this week's roundup: Firefox gains locksmith-like powers, Samsung's Galaxy Store starts supporting Progressive Web Apps, CSS Subgrid is shipping in Firefox

Weekly Platform News: Internet Explorer Mode, Speed Report in Search Console, Restricting Notification PromptsWeekly Platform News: Internet Explorer Mode, Speed Report in Search Console, Restricting Notification PromptsApr 14, 2025 am 11:15 AM

In this week's roundup: Internet Explorer finds its way into Edge, Google Search Console touts a new speed report, and Firefox gives Facebook's notification

The Power (and Fun) of Scope with CSS Custom PropertiesThe Power (and Fun) of Scope with CSS Custom PropertiesApr 14, 2025 am 11:11 AM

You’re probably already at least a little familiar with CSS variables. If not, here’s a two-second overview: they are really called custom properties, you set

We Are ProgrammersWe Are ProgrammersApr 14, 2025 am 11:04 AM

Building websites is programming. Writing HTML and CSS is programming. I am a programmer, and if you're here, reading CSS-Tricks, chances are you're a

How Do You Remove Unused CSS From a Site?How Do You Remove Unused CSS From a Site?Apr 14, 2025 am 10:59 AM

Here's what I'd like you to know upfront: this is a hard problem. If you've landed here because you're hoping to be pointed at a tool you can run that tells

An Introduction to the Picture-in-Picture Web APIAn Introduction to the Picture-in-Picture Web APIApr 14, 2025 am 10:57 AM

Picture-in-Picture made its first appearance on the web in the Safari browser with the release of macOS Sierra in 2016. It made it possible for a user to pop

Ways to Organize and Prepare Images for a Blur-Up Effect Using GatsbyWays to Organize and Prepare Images for a Blur-Up Effect Using GatsbyApr 14, 2025 am 10:56 AM

Gatsby does a great job processing and handling images. For example, it helps you save time with image optimization because you don’t have to manually

Oh Hey, Padding Percentage is Based on the Parent Element's WidthOh Hey, Padding Percentage is Based on the Parent Element's WidthApr 14, 2025 am 10:55 AM

I learned something about percentage-based (%) padding today that I had totally wrong in my head! I always thought that percentage padding was based on the

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)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.