当前位置:网站首页>Boder radius has four values, and boder radius exceeds four values
Boder radius has four values, and boder radius exceeds four values
2022-07-06 20:17:00 【imkaifan】
Problem description :
border-radius If it is 4 Value , In turn, it represents the upper left corner 、 Upper right corner 、 The lower right corner 、 The lower left corner .
But if you write it like this, it won't work ? border-radius: 69px 62px 69px 69px/97px 93px 97px 97px;
boder-radius The role of
Back to the beginning ,css What did this magic wand do ?
CSS attribute border-radius Allows you to set the rounded edges of elements . When using a radius, determine a circle , When using two radii, determine an ellipse . This ( Ellipse ) The intersection of the circle and the border forms a fillet effect .
Even if the element has no border , Rounded corners can also be used background above , The specific effect is affected by background-clip influence
demo1:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.myDiv {
display: flex;
flex-wrap: wrap;
width: 500px;
height: 500px;
border: 2px solid red;
border-radius: 125px 125px 125px 125px;
}
</style>
</head>
<body>
<div class="myDiv">
</div>
</body>
</html>
Code and schematic diagram above , Roughly know how to draw this trajectory
demo2:
border-radius To put it bluntly, you can draw an irregular figure , But we can know from the above , Irregularity is irregularity , But it must be round , Or right angles , Writing a negative value does not mean that it is an obtuse angle , Or sharp corners . Negative values are treated as 0
border-radius: 4px 3px 6px / 2px 4px;
/* Equivalent to : */
border-top-left-radius: 4px 2px;
border-top-right-radius: 3px 4px;
border-bottom-right-radius: 6px 2px;
border-bottom-left-radius: 3px 4px;
border-radius: 25px 50px 70px 60px/50px 25px 10px 10px;
/* Equivalent to : */
border-top-left-radius: 25px 50px;
border-top-right-radius: 50px 25px;
border-bottom-right-radius: 70px 10px;
border-bottom-left-radius: 60px 10px;
border-radius: 25px 50px 70px 60px/50px 25px 10px 10px; The drawing is the above figure , Don't omit the eight values , Or you need to remember the corresponding relationship of missing values , Too annoying , So don't try to save trouble , Write the whole , Others can understand
边栏推荐
- AddressSanitizer 技术初体验
- Wechat applet common collection
- Unity making plug-ins
- [Yann Lecun likes the red stone neural network made by minecraft]
- Cesium Click to draw a circle (dynamically draw a circle)
- 爬虫(14) - Scrapy-Redis分布式爬虫(1) | 详解
- 腾讯T4架构师,android面试基础
- Monthly report of speech synthesis (TTS) and speech recognition (ASR) papers in June 2022
- Catch ball game 1
- Pay attention to the partners on the recruitment website of fishing! The monitoring system may have set you as "high risk of leaving"
猜你喜欢
腾讯T4架构师,android面试基础
Error analysis ~csdn rebound shell error
22-07-05 upload of qiniu cloud storage pictures and user avatars
Transformer model (pytorch code explanation)
Example of applying fonts to flutter
BeagleBoneBlack 上手记
爬虫(14) - Scrapy-Redis分布式爬虫(1) | 详解
HMS Core 机器学习服务打造同传翻译新“声”态,AI让国际交流更顺畅
Detailed introduction of distributed pressure measurement system VIII: basic introduction of akka actor model
Speech recognition (ASR) paper selection: talcs: an open source Mandarin English code switching corps and a speech
随机推荐
小微企业难做账?智能代账小工具快用起来
【GET-4】
beegfs高可用模式探讨
Speech recognition (ASR) paper selection: talcs: an open source Mandarin English code switching corps and a speech
Crawler (14) - scrape redis distributed crawler (1) | detailed explanation
Configuration and simple usage of the EXE backdoor generation tool quasar
句号压缩过滤器
数字三角形模型 AcWing 1018. 最低通行费
Deep learning classification network -- zfnet
Appx代码签名指南
JVM_常见【面试题】
BUUCTF---Reverse---easyre
棋盘左上角到右下角方案数(2)
01 basic introduction - concept nouns
String长度限制?
8086指令码汇总表(表格)
Web security - payload
【云小课】EI第47课 MRS离线数据分析-通过Flink作业处理OBS数据
BUUCTF---Reverse---easyre
爬虫(14) - Scrapy-Redis分布式爬虫(1) | 详解