Please see the following screenshot I took from Google Gmail page (this is the second time I have taken a screenshot from the same location): 1. Understand some characteristics of characters 1. See the truth <br />As for characters, my understanding is that they are the same thing as the Chinese characters, English letters, etc. on the page. First of all, the character pattern is composed of pixels of the same color on the display, so there will be no trouble with jagged edges. If you use Photoshop to make a small triangle image, there may be hateful white edges, but characters will never have this problem. Secondly, characters are essentially text, and are subject to CSS properties such as font-size and color that affect text. 2. Advantages of using characters instead of pictures: ① No need to draw or cut out pictures, which saves a lot of effort! For page engineers, the workload is greatly reduced. You know, dealing with small images smaller than 10 pixels is very time-consuming and energy-consuming. 3. Character defects ① Performance in different browsers. 2. Some Examples of the Relationship between Characters and Fonts The first part of the demo page shows some characters that may be used in the main body of this article and how they appear in common fonts. The picture below shows representative character differences. The differences are caused by different fonts and browsers. Fortunately, we can get compatibility by trying different fonts. ![]() Differences between characters in different fonts and browsers 3. Use characters to achieve rounded rectangles and sharp corners To use characters to achieve rounded or sharp corners, the following characters can be used: The sharp corners on the left and right sides are in Songti font: <> Here the sharp corners on the left and right are in Arial font: <> The sharp corners on the left and right sides are in Lucida Sans Unicode: <> The sharp corners on the left and right here are in Times New Roman font: <> The sharp corners on the left and right sides are in Verdana font: <> Here, the sharp corners in the up and down directions are in Songti font with small sharp corners: ˇ^ Here, the sharp corners in the up and down directions are in Arial font, with small sharp corners: ˇ^ The sharp corners in the upper and lower directions are in Lucida Sans Unicode font, small sharp corners: ˇ^ The sharp corners in the upper and lower directions are in Times New Roman font, with small sharp corners: ˇ^ Here the sharp corners in the up and down directions are in the Verdana font, with small sharp corners: ˇ^ Here is a 45-degree angle, the font is Songti: ∠ Here is a 45-degree sharp-angled solid, in Arial font: ∠ Here is a 45-degree angle, in Lucida Sans Unicode : Here is a 45-degree angle, in Times New Roman font: ∠ Here is a 45 degree angle, in Verdana font: ∠ Here is a solid sharp corner, the font is Songti: ► ◄ ▲▼ Here is the solid sharp corner, the font is Arial: ► ◄ ▲▼ Here is the solid corner, the font is Lucida Sans Unicode: ► ◄ ▲▼ Here is the solid sharp corners, the font is Times New Roman: ► ◄ ▲▼ Here is the solid sharp corner, the font is Verdana: ► ◄ ▲▼ Here is a solid circle. Due to its limited size, it behaves like a hexagonal solid. The font is Songti: ● Here is a solid circle. Due to its limited size, it behaves like a hexagonal solid. The font is Arial: ● Here is a solid circle. Due to its limited size, it behaves like a hexagonal solid. The font is Lucida Sans Unicode: ● Here is a solid circle. Due to its limited size, it behaves like a hexagonal solid. The font is Times New Roman: ● Here is a solid circle. Due to its limited size, it behaves like a hexagonal solid. The font is Verdana: ● Here is a hollow circle with the font in Songti: ○ Here is a hollow circle with the font in Arial: ○ Here is a hollow circle in Lucida Sans Unicode: ○ Here is a hollow circle with Times New Roman font: ○ Here is a hollow circle with the font Verdana: ○ Here is a quarter arc, the font is Songti: ╰ ╯╭ ╮ Here is a quarter circle in Arial font: ╰ ╯╭ ╮ Here is a quarter circle in Lucida Sans Unicode: ╰ ╯╭ ╮ Here is a quarter circle in Times New Roman: ╰ ╯╭ ╮ Here is a quarter arc, in Verdana: ╰ ╯╭ ╮ 4. Implementing a rounded rectangle with a solid color background Fill the four corners with a quarter solid circle to achieve a rounded corner effect with the background color. Copy code The code is as follows:<div class="sharp_square"> <span class="quarter_round round_lt"><span class="lt">●</span></span> <span class="quarter_round round_rt"><span class="rt">●</span></span> <span class="quarter_round round_lb"><span class="lb">●</span></span> <span class="quarter_round round_rb"><span class="rb">●</span></span> </div> Copy code The code is as follows:.sharp_square{width:333px; height:110px; background:#a0b3d6; position:relative; color:#a0b3d6;}/*There is an even-odd bug in IE6. To avoid 1 pixel error, the height and width should be even numbers*/ .sharp_square .quarter_round{position:absolute;} .sharp_square .quarter_round span{background:white;} .sharp_square .round_lt{left:-1px; top:0px;} .sharp_square .round_rt{right:-1px; top:0px;} .sharp_square .round_lb{left:-1px; bottom:0px;} .sharp_square .round_rb{right:-1px; bottom:0px;} ![]() |
<<: Set the contenteditable attribute to edit the content of HTML tags (can replace textarea)
>>: Implementation steps for installing Redis container in Docker
This is the content of React 16. It is not the la...
1. Command Introduction The watch command execute...
Anyone who has used the Linux system should know ...
Achieve results Implementation ideas The melting ...
clip-path CSS properties use clipping to create t...
Using abbreviations can help reduce the size of yo...
This article records the installation and configu...
Some command differences between versions: show i...
1. The role of doctype, the difference between st...
Table of contents Overview What is Image Compress...
Table of contents background 1. The query conditi...
Many of my friends may encounter a problem and do...
I recently started learning about database knowle...
The implementation principle of Vue2.0/3.0 two-wa...
Preface In the process of using MySQL database, i...