2014-11-14 4 views
0

I는 다음과 같이 요소를 만들려고?CSS 국경 패딩

span.smallCircle { 
position: relative; 
top: 20px; 
background-color: rgba(145, 142, 142, 0.5); 
padding-top: 1px; 
padding-bottom: 1px; 
padding-left: 11px; 
padding-right: 11px; 
border: 2px dashed #fff; 
border-radius: 20px; 
} 

답변

1

그것은 일을 같은 색

box-shadow: 0px 0px 0px 5px rgba(145, 142, 142, 0.5);

+0

와 함께 상자 그림자를 추가! 고맙습니다 :) – Milenchy