Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 프라미스
- 러스트
- computer vision
- feynman's restaurant
- 컴퓨터 보안 키분배
- 파인만의 식당문제
- 파이썬
- 인공지능
- 딥러닝
- cs231n
- Git
- 머신러닝
- 키분배 알고리즘
- react-cookie
- rust
- 협업필터링
- recommender
- 메세지인증코드
- 비동기 프로그래밍
- 페이지랭크
- 인페인팅
- 커널제거
- tcp
- Hits
- image restoration
- Readme image
- pagerank
- brew 권한
- 자바스크립트 비동기
- 커널생성
Archives
- Today
- Total
Worth spreading
[css] display: inline 사이즈 조절 문제 본문
div태그 박스의 크기를 조정하려고 width height값을 주는데 이게 아무리 조정을 해도 값이 적용되지 않는 것이다..
그런데 친절한 visualstudio code에서 이런 경고를 주더라
[css] Property is ignored due to the display. With 'display: inline', the width, height, margin-top, margin-bottom, and float properties have no effect.
그것도 모르고 이값 저값 넣어보면서 왜 안되냐고 분개했었는데...
한마디로 말하면
display를 inline으로 설정 시 width, height, margin-top, margin-bottom, float 설정이 먹히지 않는다.
그래서 inline처럼 나란히 놓되 width height등 위의 프로퍼티들도 조정하고 싶다면
display: inline-block을 쓰자
다른 방법도 있겠지만 현재 내가 아는 방법은 이것이다!
참고: https://www.w3schools.com/css/tryit.asp?filename=trycss_inline-block_span1
'Web programming > html&css' 카테고리의 다른 글
prevent bounce on scroll (0) | 2018.10.30 |
---|---|
[css] parent의 높이를 child의 높이에 맞추기 (0) | 2018.07.29 |
[css] 박스 가운데정렬하기 (0) | 2018.07.29 |
[css] 화면 크기 조정시 박스들의 위치가 바뀌는 문제 (0) | 2018.07.29 |
Comments