当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


CSS color-adjust属性用法及代码示例


Color-adjust属性已证明对打印文档很有用。浏览器可以更改元素的颜色和外观,以防止使用color-adjust属性。

用法:

color-adjust:economy | exact

属性值:

  • economy:在这种情况下,浏览器可能会留下图像,以便调整文本的颜色,使其更具可读性。

用法:

color-adjust:economy

例:



<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width,  
                 initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
  #box{ 
  width:300px; 
  height:auto; 
  border-radius:50% 50%; 
  background-color:black; 
  background-image:linear-gradient( 
rgba(17, 199, 0, 0.5), rgb(255, 255, 255)); 
  color:rgb(0, 0, 0); 
  text-align:center; 
  font:24px "Helvetica", sans-serif; 
  display:grid; 
  justify-content:center; 
  color-adjust:economy; 
} 
</style> 
<body> 
  <h1>color-adjust:economy</h1> 
  <div id="box"> 
    <p>Geeks for Geeks</p> 
  </div> 
</body> 
</html>

输出:

  • exact:在这种情况下,未经用户请求,不得更改页面的外观。

用法:

color-adjust:exact

例:

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width, 
                 initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
  #box{ 
  width:300px; 
  height:auto; 
  border-radius:50% 50%; 
  background-color:black; 
  background-image:linear-gradient( 
rgba(17, 199, 0, 0.5), rgb(255, 255, 255)); 
  color:#fff; 
  text-align:center; 
  font:24px "Helvetica", sans-serif; 
  display:grid; 
  justify-content:center; 
  color-adjust:exact; 
} 
</style> 
<body> 
  <h1>color-adjust:exact</h1> 
  <div id="box"> 
    <p>Geeks for Geeks</p> 
  </div> 
</body> 
</html>

输出:

支持的浏览器:

  • Firefox
  • Opera
  • 火狐浏览器
  • Safari
  • Edge

相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 CSS color-adjust Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。