❗ Summary of three common ways of introducing HTML into CSS ❗
introduction
CSS is like a girl's cosmetics for HTML. After CSS modification, web page elements will be more rich and beautiful, but the first need before using CSS is how to add CSS code to HTML code. Here are three common methods;
ps: since the author plans to develop to the java back-end in the future, he only understands some of the main ...
Posted by angel1987 on Wed, 06 Oct 2021 13:10:14 -0700
Core programming of C + + Notes
Classes and objects
The three characteristics of C + + object-oriented are encapsulation, inheritance and polymorphismC + + believes that everything is an object, and there are attributes and behaviors on the object
For example:
People can be objects. Their attributes include name, age, height and weight... Their behaviors include walking, ru ...
Posted by laffin on Wed, 06 Oct 2021 08:47:09 -0700
Overview of HTML forms
Learning objectives: (1) Will use the basic structure of the form to make the form page (2) Will use various form elements to implement the registration page (3) Be able to understand the difference between post and get submission methods
1.1 purpose of the form
(1) User registration (2) Collect information (3) Information feedback - Quest ...
Posted by hbuchel on Wed, 06 Oct 2021 07:43:32 -0700
❤ CSDN blog tutorial and Markdown syntax summary ❤
Top
Introduction to Markdown
Markdown applicationMarkdown editor grammar
title
Class Setext formatx like form Font, size and colorparagraphlist
Unordered listOrdered listList nesting Block, referencecode
Single line code blockMultiline code block linkpictureformSplit lineDelete lineUnderlinefootnote Intra page Jump
Intro ...
Posted by joePHP on Tue, 05 Oct 2021 10:59:58 -0700
shiro verifies shiro's authentication process through the configuration file realm.ini
shiro's core architecture diagram
I didn't understand this diagram when learning shiro before. Later, after learning it systematically, I can have a global control over shiro from this diagram.
The top part is the subject body
Subject stay shiro Is an interface through which external programs subject Conduct certificat ...
Posted by jrodd32 on Mon, 04 Oct 2021 16:53:34 -0700
BFC(Block Formatting Context) in CSS layout, block formatting context
BFC(Block Formatting Context)
1, Definition of BFC
In MDN, it is said that Block Formatting Context (BFC) is a part of visual CSS rendering of Web pages, the area where the layout process of block boxes occurs, and the area where floating elements interact with other elements
In other words: BFC is to provide an independent container for ele ...
Posted by cyanblue on Sun, 03 Oct 2021 18:18:54 -0700
PHP learning part I
PHP program running sequence
PHP basic syntax
With <? php ...?> Structural frame Fill in the code at Use; End statement echo multiple output print word output Comments / / multiline comments / **/
variable
1. Start with $ 2. No space is allowed in the middle 3. Cannot start with a number Common nomenclature: hello_world,HelloWord,
...
Posted by jeger003 on Sun, 03 Oct 2021 13:44:44 -0700
3, Basic knowledge
1. Variable declaration
let is used to declare a variable
A variable is not promoted, that is, it cannot be used until it is declared The declaration cannot be repeated It has a block level scope and is only valid in the current scope
const is used to declare a constant
The variable declaration is not promoted, that is, the variable can ...
Posted by gabeanderson on Sat, 02 Oct 2021 12:50:21 -0700
Introduction to Java 16 atomic classes - based on JDK8
Description of the number of atomic classes
Before JDK7 included 7, there were 12 java atomic classes, as shown below
Four atomic operation classes appear in JDK8, as shown in the following picture
Atomic update base type class
Update basic types in an Atomic way. The Atomic package provides the following three classes.
...
Posted by smarlowe on Fri, 01 Oct 2021 18:38:20 -0700
ECharts from introduction to advanced 6000 words long, with pictures and texts
Echarts quick start
Import the echorts.js filePrepare a box to present the chartInitialize the ecarts instance objectPrepare configuration itemsSet the configuration item to the ecarts instance object
<div style='width: 600px; height: 400px;'></div>
<script src="./lib/echarts.js"></script>
<script>
// Initializ ...
Posted by skyer2000 on Thu, 30 Sep 2021 16:25:07 -0700