바깥 테두리 꾸미는 css 있을까요?
본문
답변 2
전 이미지에 스타일 줘서 둥근 테두리로 감싸고
글씨 넣어서 쓰기도 합니다
<style>
.box777 {
float:left;
width:213px;
height:85px;
border:#dcdcdc solid 1px;
overflow:hidden;
border-radius:0.5em;
cursor: pointer;
padding: 0px 0px 15px 15px;
line-height:150px;
font-size:20px;
color:rgba(255, 255, 255, 0.9);
text-shadow: 0 1px 0 rgba(128, 128, 128, 0.2);
font-family:한컴 소망 B;
}
</style>
답변을 작성하시기 전에 로그인 해주세요.