关于background和calc()的一个小问题
A small question about background and calc()
所有。
我正在做一个项目。我有一个小问题。关于计算函数。
众所周知..
它适用于所有浏览器..
========== 好的 =============
background-color:#dfdfdf;
background-image:url(..);
background-position: calc(100% - 10px) center;
background-repeat: no-repeat;
但为什么下一个代码不能在 IE11 上运行??
==========不支持 IE 11 =============
background:#dfdfdf url(..) no-repeat calc(100% - 10px) center;
-_-;;;;;;;;;;;;;;;
IE11必须单独使用
body
{
background:#dfdfdf url("https://www.w3schools.com/w3css/img_lights.jpg") no-repeat;
background-position:calc(100% - 100px) center;
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Page Title</title>
<meta name="description" content="Write some words to describe your html page">
</head>
<body>
</body>
</html>
所有。
我正在做一个项目。我有一个小问题。关于计算函数。
众所周知.. 它适用于所有浏览器..
========== 好的 =============
background-color:#dfdfdf;
background-image:url(..);
background-position: calc(100% - 10px) center;
background-repeat: no-repeat;
但为什么下一个代码不能在 IE11 上运行??
==========不支持 IE 11 =============
background:#dfdfdf url(..) no-repeat calc(100% - 10px) center;
-_-;;;;;;;;;;;;;;;
IE11必须单独使用
body
{
background:#dfdfdf url("https://www.w3schools.com/w3css/img_lights.jpg") no-repeat;
background-position:calc(100% - 100px) center;
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Page Title</title>
<meta name="description" content="Write some words to describe your html page">
</head>
<body>
</body>
</html>