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
css simple knowledge
CSS style sheet
1, Overview
1. What is CSS?
Cascading style sheets, customizing the display style of html elements and beautifying the page are very important for the construction of front-end pages
2. Why use CSS
(1) CSS refers to cascading style sheets (2) Styles define how HTML elements are displayed (3) Styles are usually stored in sty ...
Added by lee2732 on Sat, 12 Feb 2022 03:30:55 +0200
HTML semantic, core common elements
Semantic
What is semantics
Each HTML element has a specific meaning
a element: hyperlink p element: paragraph h1 element: first level title
All elements have nothing to do with the display effect
The effect of elements displayed in the page should be determined by CSS.
Because browsers have default CSS styles, each element has some de ...
Added by Edgewalker81 on Sat, 12 Feb 2022 00:35:48 +0200
The way of advertising for programmers alone? Five minutes will teach you to show love to the goddess with code
Valentine's Day is coming, and the annual abuse of Wang opera is coming once again. What is lipstick, Bing dwen dwen, Xiao Bing Bai, ice Pier? It's really low. We have our own set of tools to express our thoughts.
Want to see what kind of sparks can the most rational code and the most romantic advertisement collide? Next, sister Yien will ...
Added by SnakeO on Fri, 11 Feb 2022 13:30:00 +0200
SSM framework integration ideas (personal view)
SSM framework integration ideas (personal view)
The ssm framework is frequently used in projects. In order to focus on the business code in the project, I sorted out the steps to be used by the ssm framework. The following figure is the result of the sorting. (the green box in the figure is the key point of the process, and the changes in each ...
Added by froggie81 on Fri, 11 Feb 2022 07:57:10 +0200
CSS learning notes
CSS Icon
How to add icons The easiest way to add icons to an HTML page is to use an icon library, such as Font Awesome.
Adds the name of the specified icon class to any inline HTML element (such as < I > or < span >).
All icons in the following icon library are scalable vectors that can be customized using CSS (size, color, shado ...
Added by nemiux on Thu, 10 Feb 2022 20:32:16 +0200
HTML DOM Learning Front End must understand the architecture DOM [simple, easy to learn, comprehensive]
Before learning html dom, you must have HTML,CSS and Javascript Knowledge reserve.
1. Interpret DOM, HTML DOM, and XML DOM
1. What is DOM?
Here DOM, the full name is short for Document Object Model. DOM is the standard of the W3C (World Wide Web Consortium). DOM defines standards for accessing HTML and XML documents.
2. What is an XML ...
Added by archangel_617b on Wed, 09 Feb 2022 22:34:50 +0200
Use antv/X6 to realize the flow of line animation and quickly build initial practice records such as flow chart and DAG chart
Recently, we need to display the deep learning network structure diagram on the front end in a more intuitive form. For data transmission, we plan to use the form of data path flow, because I haven't learned much about the front end. I feel that there will be many problems after I write js and css code. The beauty of the front end display an ...
Added by mkr on Wed, 09 Feb 2022 16:49:24 +0200
CSS box elastic layout
@[TOC]HTML+CSS to realize the elastic layout of web pages
Elastic box
Recommended learning address:
Link: CSS3 flex box. Centering properties understand: align-items justify-content align-content Station B Layout effect: Project address: https://download.csdn.net/download/LF2018131/18888035
Basic knowledge and characteristics
The elastic ...
Added by rusty1001 on Wed, 09 Feb 2022 03:43:37 +0200
HTML color, script, character entity, URL, quick reference list, tag abbreviation and full name
HTML color HTML colors are a mixture of red, green and blue.
Color value HTML colors are defined by a hexadecimal symbol consisting of red, green, and blue values (RGB).
The minimum value for each color is 0 (hex: #00). The maximum value is 255 (hex: #FF). HTML color name Currently, all browsers support the following color names. 141 color na ...
Added by beckstei on Mon, 07 Feb 2022 22:50:28 +0200