Catalog
1. Font Properties
1.1 Font Size
1.2 Font Style
1.3 Set line height
1.4 Font Tilt
Compound Writing of 1.5 font
2. Text Attributes
2.1 Font Color
2.2 Retrieve or set the case of text in an object
2.3 Text Alignment
2.4 Text Modification
2.5 first line indentation
2.6 Word Spacing
2.7 Word Spacing
3. List Attributes
3.1 ...
Posted by Matt Kindig on Sun, 07 Aug 2022 21:42:26 +0300
Session 8: CSS3 advanced application
2.8.1 transition
The transition properties provided by CSS3 can add effects when elements change from one style to another without using Flash animation or JavaScript script, such as fade, fade, animation speed, etc
Transition property property
The name of the CSS attribute used to specify the transition ...
Posted by maGGot_H on Tue, 24 May 2022 23:31:32 +0300
urllib Library
preface
In the actual operation of the crawler, we only need two lines of code to get the web content. This function is the implementation of the third-party library
In Python 2, our library has urllib 2 and urllib, but in Python 3, we directly merged this library into urllib, which is why we can't afford to install it when we in ...
Posted by ReDucTor on Mon, 23 May 2022 11:16:21 +0300
First on the effect map, there are two kinds,
This is to use transform to change the size and zoom
This is to change the size of the text to zoom, which will cause typographic changes
When using transform, you can obviously feel more stuck than when you use changing the size of the text, and the larger the browser window, the more obvious the s ...
Posted by bolter on Mon, 23 May 2022 02:38:34 +0300
[1. Project Background]
In real life, we often encounter color matching problems, at this time go to Baidu RGB table. The RGB table, on the other hand, only provides RGB values relative to the color, and no modules can be validated.
We can use jquery mobile to design the color picker and get the color values we want. You can also validate the c ...
Posted by LiLaaron on Sun, 22 May 2022 23:06:18 +0300
Tip: after the article is written, the directory can be generated automatically. Please refer to the help document on the right for how to generate it
preface
Tip: Here you can add the general contents to be recorded in this article:
https://www.bilibili.com/video/BV14J4114768?p=61&spm_id_from=pageDriver
Tip: the following is ...
Posted by podarum on Sun, 22 May 2022 04:58:44 +0300
1, Basic properties of CSS 2
1. Table attributes
Attribute name
purpose
Value
border-collapse
Sets or retrieves whether the edges of rows and cells of a table are merged or independent.
separate: border independent
collapse: adjacent edges are merged
border-sp ...
Posted by Hades666 on Sat, 21 May 2022 08:16:11 +0300
DOM manipulation of CSS
Read and modify inline styles
1. Use the style attribute to manipulate the inline style of an element
- Read inline styles:
Syntax: element.style.style name
- example:
element.style.width
element.style.height
- Note: if the style name has-,you need to change the style name to camel case
Will-remove, ...
Posted by Duje_KH on Thu, 19 May 2022 03:17:02 +0300