codestates / codestates/AllForYou

[Error] 남태식 / 2022-01-13

Open
#128 0 comments 0 reactions 0 assignees View on GitHub
Err Front-End
Dominant language
JavaScript
Stars
0
Forks
4
PR merge metrics
No merged PRs in 30d

Description

### 어떤 에러인가요?
* CSS 이미지 크기에 따른 제목 안보인

### 에러 메시지
![스크린샷 2022-01-13 오후 12 06 26](https://user-images.githubusercontent.com/83868259/149269107-035eeebf-6424-4eee-b585-2cd50769f09a.png)

![스크린샷 2022-01-13 오후 12 06 35](https://user-images.githubusercontent.com/83868259/149269122-4005a624-76ed-44f0-9a74-79617cb67e33.png)

### 에러 핸들링 방법
* 위와 같이 이미지를 보면 영화 에서는 이미지에 가려져 제목이 안보이고, 영상에서는 제목이 보인다
**기존 코드**

```
.contents_container {
width: 15em;
height: 20em;
}

.img_card {
width: 100%;
height: 100%;
}
```

**변경 코드**

```
.contents_container {
}

.img_card {
width: 15em;
height: 20em;
}
```

상기와 같이 부모 태그에 이미지 크기를 적용하고 자식 태그에 넓이, 높이 모두 100%로 주었었는데 자식에게 직접적으로 사이즈를 주어 해결 하였다.
좀 더 깔끔한 방법이 있을꺼 같은데 추후 CSS 마무리 작업때 찾아 보도록 하겠다

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.