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

Front end interview questions

browser How browser works user interfacenetworkUI backenddata storage Browser enginerendering engine js interpreter Mainstream browser Mainstream browsers: IE, Firefox, Safari, Google Chrome, Opera Four cores: Trident, Gecko, webkit and Blink Introduce your understanding of the browser kernel It is mainly divided into two parts: render ...

Added by mmj on Thu, 17 Feb 2022 18:54:42 +0200

vue filters and listeners and computed properties

1. Filter 1.1 basic usage Filters are a function provided by vue for developers and are often used for text formatting. Filters can be used in two places: interpolation expressions and v-bind attribute bindings. The filter should be added at the end of the Javascript expression and called by the pipeline character |: Format the va ...

Added by gmwebs on Thu, 17 Feb 2022 15:30:20 +0200

2022, don't you know PWA? Teach you how VuePress blog can be quickly compatible with PWA

prefacestay "A blog with VuePress + Github Pages" In, we used VuePress to build a blog. The final effect is as follows: TypeScript Chinese document. In this article, we talk about how to be compatible with PWA.PWAPWA, full English Name: Progressive Web Apps, Chinese Translation: progressive Web applications.quote MDN Introduction to:P ...

Added by spainsoccerfreak on Thu, 17 Feb 2022 14:53:52 +0200

[JSTL] # simple use of JSTL: core tag c format tag fmt function

1. Core label The core tag is the most commonly used tag of JSTL. When you want to use it, you can directly import it: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 1.1 <c:if> Equivalent to if statement in java <c:if test="Judgment conditions" var="Variables that store results" scope="var Scope of propert ...

Added by gtzpower on Thu, 17 Feb 2022 14:01:57 +0200

DAY13 / CSS triangle + interface style + vertical align + overflow text ellipsis display + layout skills + CSS initialization

catalogue CSS triangle Interface style Mouse cursor outline Prevent dragging text field resize Vertical alignment of inline and inline block elements vertical-align Blank gap at the bottom of the picture Overflow text ellipsis display Single line overflow text ellipsis display Layout skills Clever use of negative margin Text ...

Added by fareedreg on Thu, 17 Feb 2022 12:31:29 +0200

[Vue.js] encapsulate native pager components

Pagers are widely used in both foreground and background projects. Record the implementation process of encapsulating the native pager. A component needs to be encapsulated. The most important thing is to determine what data it needs to dynamically obtain. To implement a pager, the following four data need to be transmitted externally: 1. ...

Added by computerzworld on Thu, 17 Feb 2022 03:31:39 +0200

Basic knowledge of JavaScript Chapter 2 - variables and data types

preface❤️ As long as the next day can be expected, today is worth rejoicing ❤️ 1, Variable (1) Variable overview 1.1 what are variables Vernacular: a variable is a box of things. Popular: variables are containers for storing data. We get the data through the variable name, and even the data can be modified. 1.2 storage of variables i ...

Added by ronthu on Thu, 17 Feb 2022 03:15:46 +0200

Basic HTML I (introduction, syntax, structure, common tags, picture tags, hyperlinks)

1. What is HTML? HTML is a language used to describe Web pages HTML refers to hypertext markup languageHTML is not a programming language, but a markup languageMarkup language is a set of markup tagsHTML uses tags to describe Web pages 2. Basic HTML syntax and relationship Basic syntax: HTML tags are keywords surrounded by angle brackets, ...

Added by adamgeorge on Wed, 16 Feb 2022 18:50:52 +0200

JS - BOM overview, common window events, timer, JS execution mechanism

BOM overview concept BOM: browser object model, which provides objects that interact with browser windows independently of content. The core object is window. Difference between DOM and BOM DOM: document object model. A document is a DOM tree. html is the root of the tree. Tags, tag attributes and text in tags are all nodes of the book. ...

Added by dagee on Wed, 16 Feb 2022 18:39:35 +0200