Note: Chapter 1 of the authoritative guide to css (including the difference between display link and @ import)

catalogue css Chapter 1 1 cascading style sheets 2 element 1. Replacement elements 2. Non replacement elements 3. Display mode of elements 3. Introduce css  1 link  2 @import  3 style 4 inline style 3 content in style sheet 1. Mark, note 2. Rules 3. Manufacturer prefix: 4. Processing blank: 4 media query 1. Grammar 2. Type of ...

Added by Terminator on Sun, 30 Jan 2022 16:46:25 +0200

Front end fourth note (38 ~ 57) css

Inheritance of styles (p38) 1. Style inheritance: the style we set for an element will also be applied to the descendant elements. 2. Inheritance occurs between descendant elements and descendants. 3. The design of inheritance is to facilitate our development. Using inheritance, we can uniformly set some general styles to the common ance ...

Added by Petrushka on Sun, 30 Jan 2022 08:39:52 +0200

Sass selector function

In this section, let's take a look at the selector function in Sass, which is used to view and process selectors. Selector functions commonly used in Sass: functiondescribeis-superselector()Compare the matching ranges of the two selectors, and return true if they match; otherwise, return falseselector-append()Add one (or more) selectors after ...

Added by raister on Sat, 29 Jan 2022 19:07:34 +0200

Completion report of communication software development and Application

Objective requirements Build A static or dynamic website, i.e. select A or B from the following requirements, and the theme is optional. The requirements are as follows: A. Static website. You can use any CSS framework you like, such as BootStrap, MDB, tailwind, etc. there are no less than 5 pages, and the last page places the hyperlink of ...

Added by ugriffin on Sat, 29 Jan 2022 13:16:29 +0200

The way of rookie's review -- basic HTML

1, Introduction to HTML First, html is a hypertext markup language, which wraps the content in various HTML tags, which are parsed by the browser and presented to the user. It is the main content of the Web front end, and html is not case sensitive. The suffix names of HTML files are ". HTML" and ". htm". The version number ...

Added by centenial on Fri, 28 Jan 2022 15:14:05 +0200

Theme skin changing based on element UI

Today we share the theme skin changing function based on element UI demand The effect is shown in the moving picture: Requirement Description: switch themes of different colors and styles according to customers' personal preferences. Key point 1: configure the theme color in the official element ui and download the corresponding file, which ...

Added by gizmola on Fri, 28 Jan 2022 02:41:44 +0200

Dark horse front end notes 3--CSS

[reference course] dark horse programmer pink teacher's front-end introductory course, h5(html5)+css3 + Mobile front-end video course for zero Foundation: b station course link Course materials: materials and source code: Download link [PPT] link: https://pan.baidu.com/s/1jm1LUuk5NIM-PPhmAbjEkg Extraction code: sp39 Related materials: W3C-CSS ...

Added by scvinodkumar on Thu, 27 Jan 2022 21:00:24 +0200

[CSS basics] box model

Box model overview Box model is box model, no matter div, span or a are box models. Area in box model Margin - clears the border area. Margin has no background color. It is completely transparentBorder - padding and content around the border. The border is affected by the background color of the boxPadding - clears the area around the cont ...

Added by twm on Thu, 27 Jan 2022 07:50:31 +0200

Grail layout and twin wing layout

Grail layout Requirements: 1. Fixed width and height on both sides, adaptive in the middle. 2. For the three column layout, the middle column is loaded and rendered first. Technique: negative value of float + position + margin left DOM structure <div class="container"> <div class="main">main</div> <div class="left" ...

Added by aminnuto on Thu, 27 Jan 2022 06:13:58 +0200

How do I use RestTemplate with Ribbon?

1. Using RestTemplate and Integrating Ribbon Spring provides a simple and convenient template class for API calls, RestTemplate. Use RestTemplate First, let's look at how GET requests are used: add two interfaces to the HouseController of the fsh-house service, one that passes parameters through @RequestParam and returns an object information; ...

Added by samscripts on Tue, 25 Jan 2022 19:21:19 +0200