Reprint: N methods to align the list in the last line of CSS flex layout to the left

Click "programmer Xiaole" at the top to pay attention, and grow together with star standard or top At 00:00 a.m. every day, I make an appointment with you at the first time Daily English Nothing in this world no wounds people can really heal yourself,only yourself. There is no one in this world who is not ...

Posted by phpfre@k* on Sun, 23 Jan 2022 13:27:20 +0100

Java Web -- detailed learning notes of HTML, CSS and JavaScript (including rich sample code)

** Java Web – HTML, CSS, JavaScript learning notes ** HTML (Hyper Text Markup Language): it controls the content of the page. It is a language composed of tags, which can show the effect of hypertext. CSS: controls page layout, visual effects, etc C/S structure: Client Server Client to Server B/S structure: Browser Server Browser to S ...

Posted by les48 on Sat, 22 Jan 2022 20:37:43 +0100

Take you to upload pictures with VUE

Abstract: I saw the effect of uploading pictures when I visited station b. I thought I could do one myself. Because the original author was written in native js, I might as well write it in vue. Of course, it's a very small thing. It's good to directly reference vue in HTML files. The detailed steps are as follows~ This article is shared from ...

Posted by ahmedkl on Fri, 21 Jan 2022 11:41:27 +0100

Two way binding of Vue based v-model forms

1. What is bidirectional binding? In MVVM (Model View ViewModel), specifically, the Model value is js code. View refers to DOM objects, that is, the content in HTML. ViemModel can be regarded as the medium between them. The medium of this paper is undertaken by Vue. Before MVVM appeared, people often used jquery to process the content in HTML ...

Posted by crusty_php on Fri, 21 Jan 2022 08:23:01 +0100

Prototype and prototype chain

1, What is a prototype Prototype: when each javascript object (except null) is created, it will be associated with another object. This object is what we call the prototype, and each object will "inherit" properties from the prototype. for example var obj = new Object(); When creating an object, an object will be associated ...

Posted by schoi on Thu, 20 Jan 2022 07:37:37 +0100

[responsive layout of mobile Web development]

[responsive layout of mobile Web development] front end notes (20) This study note is a personal summary of teacher Pink's course. Please indicate the source for reprint! 1, Responsive development 1.1 principles of responsive development Media query is used to set the layout and style of devices with different widths, so as to adap ...

Posted by mrgrinch12 on Wed, 19 Jan 2022 07:40:55 +0100

Introduction to HTML format and Tags

Basic understanding of the front end: 1. Structure (HTML) Used to describe the page structure2. Performance (CSS) Controls the style of elements in the page Beautify the page in the front end3. Behavior (JavaScript) Used to respond to user actions Play the role of page layout modification in the front end Basic format of HTML Hyper Text Mark ...

Posted by seeya on Wed, 19 Jan 2022 03:24:43 +0100

Selector summary in CSS

I Basic selector Basic selector: Label selector: for a class of labelsID selector: used for a specific labelClass selector: use for all tags you wantUniversal selector (wildcard): applicable to all labels (not recommended) selectorExampledescribe.class.navSelect all elements of class = "intro"#id#firstnameSelect all elements wi ...

Posted by Shiki on Wed, 19 Jan 2022 00:20:56 +0100

CSS common styles

CSS common styles List style In the past, we had ul/ol list tags in HTML pages, but now we have unified them in CSS 1. List style type is used to set the style symbol in front of the list none remove the preceding symboldisc solid circleCircle hollow circlesquare solid rectangleNumerical representation of decimal decimal decimal progressionD ...

Posted by carlg on Tue, 18 Jan 2022 19:19:00 +0100

2021-07-19 learning CSS

1, CSS introduction CSS The main use scenario is to beautify the web page and layout the page 1. Limitations of HTML Although simple styles can be made, they bring endless bloated and cumbersome 2. CSS - beautician of web pages (short for cascading style sheets) CSS is also a markup language, which is mainly used to set the text c ...

Posted by dull1554 on Tue, 18 Jan 2022 05:38:52 +0100