본문 바로가기

공부도 좋아/HTML . CSS . JS

[CSS] box-shadow 미제

a태그에 먹히지 않는다?

 

 

 

 

 

element.style {

 

}

main.scss:79

.contbox .block a {

  • border: 1px solid #f4f4f4;
  • display: inline-block;
  • width: 100%;

}

 

_reset.scss:82

a {

  • background-color: transparent;
  • text-decoration: none;

}

 

user agent stylesheet

a:-webkit-any-link {

  • color: -webkit-link;
  • cursor: pointer;
  • text-decoration: underline;

}

Inherited from 

div.contbox

main.scss:55

.contbox {

  • padding: 0 300px;
  • margin-bottom: 175px;
  • font-size: 24px;
  • position: relative;

}

 

Inherited from 

div.wrap

_common.scss:18

.wrap {

  • padding-top: 100px;
  • font-size: 24px;
  • font-family: 'Montserrat', sans-serif, 'Noto Sans KR';
  • font-weight: 200;
  • color: #3b3b3b;
  • overflow: hidden;

}

 

Inherited from 

html

_reset.scss:11

html {

  • line-height: 1.15;
  • -webkit-text-size-adjust: 100%;

'공부도 좋아 > HTML . CSS . JS' 카테고리의 다른 글

a 태그 점선테두리=아웃라인 없애기  (0) 2020.06.11