CSDN blog first line indentation, font color, size, style, text background

CSDN blog style

When many bloggers write CSDN blogs, they are faced with the operation of not indenting the first line and changing the font style. Below I have compiled some small knowledge about CSDN blogging that will be used. The writing method can refer to HTML language.

            能缩进四分之一个汉字大小
            能缩进二分之一个汉字大小
            能缩进一个汉字大小
            能缩进四分之一个汉字大小
           能缩进二分之一汉字大小
           能缩进一个汉字大小

Let's see the effect directly below.
Indent-no indent
 indent-indent one-quarter of a Chinese character
Indent-no indent
 indent-indent one-half of a Chinese character
Indent-no indent  indent-indent one -quarter
Chinese character

CSDN font style

The following is the writing method of some text styles I have compiled, which is similar to HTML language in writing

font format

 <font face="隶书">隶书</font> 
 <font face="楷体">楷体</font> 
 <font face="STCAIYUN">华文彩云</font>
 <font face="华文彩云">华文彩云</font>

Official script and
regular script
Chinese colorful
clouds

font size

 <font size=0 >0</font>
 <font size=1 >1</font>
 <font size=2 >2</font>
 <font size=3 >3</font>
 <font size=4 >4</font>
 <font size=5 >5</font>
 <font size=6 >6</font>
 <font size=7 >7</font> 

01234567

font color

You can use colors directly

<font color=gray>灰色</font><font color=red>红色</font>

Gray red
can use hexadecimal

<font color=#32b53>16进制</font><font color=#12q47>16进制</font><font color=#78v56>16进制</font>

Hexadecimal hexadecimal hexadecimal

Text background

<table><tr><td bgcolor=blue>蓝色</td></tr></table>
<table><tr><td bgcolor=red>红色</td></tr></table>
<table><tr><td bgcolor=#E1FFFF>#E1FFFF</td></tr></table>
<table><tr><td bgcolor=#FFFF00>#FFFF00</td></tr></table>
<table><tr><td bgcolor=#32b53>#32b53</td></tr></table>
blue
red
# E1FFFF
# FFFF00
# 32b53

Guess you like

Origin blog.csdn.net/planetoid_a/article/details/108993857