Getting started with front-end css3

php中世界最好的语言
Release: 2018-03-10 09:31:18
Original
1587 people have browsed it

We know that if you want to learn front-end, then CSS3 and HTML5 are the most basic and first knowledge to learn. Today we will bring you CSS3, the front-end introduction, let us take a look together

Without further ado, let’s get to the point

What is css3

The key elements of css3 forming a page
CSS3 is split into "modules". Old specifications have been broken into small pieces and new ones have been added.
Some of the most important CSS3 modules are as follows:

Selector

css is also called style, which consists of "selector", "styleattribute" and "attribute selection" Value" consists of three parts (Alibaba interview questions);

If you want to set the CSS style in the HTML element, you need to set the "id" and "class" selectors in element ① .

①Elements are called DOM in JS, and are divided into block-level elements and inline elements
If you don’t understand, check the details yourself

<p class="xxx">Hello,world</p>选择器{属性:值}
.xxx{width:100px;}<p id="xxx">Hello,world</p>选择器{属性:值}
#xxx{width:100px;}
Copy after login

Both are similar , if the selector uses class, when writing the style, it starts with "." such as .xxx. If the selector uses id, it starts with "#" such as #xxx (especially emphasize that id is the only selector, and the class name can only be Used once).

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website Other related articles!

Related reading:

How to solve the css Hack of IE11

axios How to make HTTP request client based on Promise

How VUE uses anmate.css

The above is the detailed content of Getting started with front-end css3. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!