CSS cascading style sheet

1.1 CSS introduction Limitations of HTML: only focus on the semantics of content.CSS: cascading style sheet, CSS style sheet or cascading style sheet.CSS is also a markup language, which is mainly used to set the text content, image shape, layout and appearance display style of HTML page.Composition of CSS: selector and one or more declarati ...

Added by dearmoawiz on Tue, 22 Feb 2022 10:32:40 +0200

Teach you the super cute navigation bar hand in hand

If you are Xiaobai, this set of information can help you become a big bull. If you have rich development experience, this set of information can help you break through the bottleneck 2022web full set of video tutorial front-end architecture H5 vue node applet Video + data + code + interview questions. well! Hello, everyone. Today, let's make ...

Added by moreshion on Sun, 20 Feb 2022 23:00:25 +0200

Some new css3 features you must know

πŸ“‹ Personal profile πŸ’– About the author: Hello, I'm Daniel πŸ˜œπŸ“ Personal homepage: Hall owner a NiuπŸ”₯πŸŽ‰ Support me: like πŸ‘+ Collection ⭐ Email + message πŸ“πŸ“£ Series column: cssπŸπŸ’¬ Maxim: so far, all life is written with failure, but it doesn't prevent me from moving forward! πŸ”₯ Previous portal: πŸ‘‰Selectors in css πŸ‘‰css box mode ...

Added by phil88 on Sun, 20 Feb 2022 18:27:02 +0200

web experiment record

Experiment content: An interactive interface is designed, as shown in the figure. The upper part is the input area and the lower part is the table display area. The table data is dynamically requested through Jquery Ajax. Purpose and requirements of the experiment: (1) Understand and master the get mode request of Jquery AJAX (2) Understand ...

Added by unplugme71 on Sat, 19 Feb 2022 02:29:37 +0200

CSS learning notes 4 (box model)

CSS learning notes 4 (box model) Box model Border properties A border is a line that surrounds the width and height of a label Hyphenation (set four edges at the same time) Border: the width of the border, the style of the border, and the color of the border; Sample code <style> .box{ width: 100px; ...

Added by willwill100 on Fri, 18 Feb 2022 08:34:49 +0200

Proficient in CSS Chapter 8 responsive layout learning cases

Proficient in CSS Chapter 8 responsive layout learning cases There are three responsive learning cases, one is flex responsive, and the other two will be Proficient in CSS Chapter 7 learning notes (Part 1) and Proficient in CSS Chapter 7 learning notes (Part 2) The two cases done in are transformed into response. Response of flexbox Flexbox ...

Added by Baving on Thu, 17 Feb 2022 19:23:21 +0200

How is the mask effect achieved in the LPL Ban/Pick selection stage?

Recently, the S11 LPL spring competition started. In the process of watching the competition, I found a new and interesting mask effect in the Ban/Pick selection stage of the new season, as shown in the following figure:Of course, it is a dynamic effect. In the process of selecting a candidate, there will be a breathing effect:The Gif image is ...

Added by burhankhan on Tue, 15 Feb 2022 05:30:37 +0200

Efficient entry css3

Reference css file If there are many, many and complicated styles in our style, we can create a new css file and put it in html in the same directory, and then enter it in style <link href="./mystyle.css" rel="stylesheet" type="text/css"/> You can reference css files in html files, which is more convenient for modifying large files! Β  ...

Added by emrys404 on Sat, 12 Feb 2022 14:39:42 +0200

Responsive layout

Responsive layout When I write the project, I use the responsive layout to find the information, harvest and Bug The following articles quoted by other authors. If there is infringement, please contact to delete it! doubt Why can't 1rem be 1px The minimum font size set by the current browser is 12px, so the browser automatically recognizes ...

Added by hansman on Sat, 12 Feb 2022 00:01:52 +0200

[interview] 764 high frequency front-end development interview questions and answers sorting

Tell me about your understanding of closures Closures are mainly used to design private methods and variables. The advantage of closures is that they can avoid the pollution of global variables. The disadvantage is that closures will reside in memory and increase memory usage. Improper use can easily lead to memory leakage. Closures have thre ...

Added by wrequed on Fri, 11 Feb 2022 19:29:08 +0200