Method: 1. Use the "border-radius" attribute to set the square element into a fan shape. The syntax is "border-radius: square width value 0 0;"; 2. Use the "element {background-image:url (Picture path);}" statement can set the background image for the fan-shaped element.
The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.
How to realize fan-shaped display of pictures in css3
In css, you can use the border-radius attribute and background-image attribute to realize fan-shaped display of pictures.
The border-radius attribute can set a square element to a fan shape, and then use the background-image element to set a background image for the fan-shaped element.
The example is as follows:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> div{ border-radius:200px 0 0; width: 200px; height: 200px; background-image:url(1118.02.png); } </style> </head> <body> <div></div> </body> </html>
Output result:
(Learning video sharing: css video tutorial)
The above is the detailed content of How to achieve fan-shaped presentation of pictures in css3. For more information, please follow other related articles on the PHP Chinese website!