2017-03-26 16 views
1

나는 꼬리말이 있고 지그재그 테두리로 작업하려고하는데 제대로 작동하지만 삼각형의 색상을이 색상 # 67BA4D로 변경하고 싶습니다. 어떻게 할 수 있습니까?지그재그 푸터 변경 traingle 색상

.BottomFooter { 
 
position: relative; 
 
    background-color: #67BA4D; 
 
    margin-top: 20px; 
 
    padding-top: 50px; 
 
    padding-bottom: 30px; 
 
} 
 

 
.BottomFooter:before { 
 
    content: ""; 
 
    position: absolute; 
 
    top: -4px; 
 
    left: 0; 
 
    right: 0; 
 
    height: 4px; 
 
    /* red up pointing triangle */ 
 
    background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228px%22%20height%3D%224px%22%3E%3Cpolygon%20points%3D%220%2C4%204%2C0%208%2C4%22%20fill%3D%22%23CC0000%22%2F%3E%3C%2Fsvg%3E"); 
 
}
<div class="BottomFooter"> 
 
      <div class="row"> 
 
       <div class="col-lg-6 col-xs-6"> 
 
        <p> © 2017</p> <a href="#"></a> </div> 
 
       <div class="col-lg-6 col-xs-6"> 
 
        <ul class="list-unstyled list-inline"> 
 
         <li><a href="#">privacy</a></li> 
 
         <li><a href="#">call us</a></li> 
 
        </ul> 
 
       </div> 
 
      </div> 
 
     </div>

+2

in u 배경 이미지 : url 하위 문자열'fill % 3D % 22 % 23CC0000','# cc0000'은 색상입니다. 이것을 바꿔. –

답변

2

변경 데이터 : 이미지 :

data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228px%22%20height%3D%224px%22%3E%3Cpolygon%20points%3D%220%2C4%204%2C0%208%2C4%22%20fill%3D%22%2367BA4D%22%2F%3E%3C%2Fsvg%3E 

색상 코드 끝에은 "채우기"인수 후 여기 내 코드입니다.

data:image/svg xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="8px" height="4px"><polygon points="0,4 4,0 8,4" fill="#67BA4D"/></svg>