屏幕缩小 文字不能缩小
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>屏幕适配</title>
<style type="text/css">
.body{
margin: 0;
}
.box a{
display: block;
width: 25%;
/*
第一种方法
width: calc(25% - 4px);*/
/* 这里要空格 不空格会出错*/
height: 100px;
background-color: pink;
text-align: center;
line-height: 100px;
float: left;
text-decoration: none;
font-size: 14px;
border: 1px solid black;
box-sizing:border-box;
}
</style>
</