CSS - 使用背景颜色设置时定位背景图像

时间:2018-05-10 15:52:15

标签: css

我这里有一个代码笔 - https://codepen.io/mt-ttmt/pen/yjKPZZ

我可以设置元素的背景颜色并设置背景图像

是否可以设置backgorund图像的大小和位置,而不影响背景颜色。

.content{
  background:  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1' viewBox='0 0 10 6'%3E%3Cpath d='M1.7.3A1 1 0 1 0 .3 1.7l4 4a1 1 0 0 0 1.4 0l4-4A1 1 0 1 0 8.3.3L5 3.58 1.7.29z' fill='red'/%3E%3C/svg%3E"),linear-gradient(to bottom, white, #999);
  background-repeat: no-repeat;

  /* This effects the background color as well*/

  /*  background-size: 20px;
      background-position: 2px 5px; 
  */

  height: 50px;
  width: 200px;
  border: 1px solid grey;
}

0 个答案:

没有答案