This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/* 样式设计 */
.container{
height: 90vh; /*高100视窗,这里写100%无效的*/
display: flex; /*flex布局方法*/
flex-direction: column;/*垂直布局*/
align-items: center;/*水平方向居中*/
justify-content: space-around;/*垂直方向分散布局*/
}
.abc{
width: 400rpx;/*图片宽度*/
border-radius: 50%;/*4个角变为圆角形状*/
text{
font-size: 50rpx;/*字体大小*/
color: red;
background-color: blue;
border:5rpx solid paleturquoise;