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 |
Tags
- 키분배 알고리즘
- 머신러닝
- brew 권한
- Git
- 인페인팅
- Hits
- 딥러닝
- react-cookie
- feynman's restaurant
- 컴퓨터 보안 키분배
- 파이썬
- 인공지능
- 비동기 프로그래밍
- 커널생성
- recommender
- tcp
- cs231n
- 러스트
- pagerank
- computer vision
- rust
- 메세지인증코드
- 자바스크립트 비동기
- image restoration
- 커널제거
- 프라미스
- 페이지랭크
- Readme image
- 파인만의 식당문제
- 협업필터링
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 설정이 먹히지 않는다. 그래서 inlin..
Web programming/html&css
2018. 7. 29. 18:40
[css] 박스 가운데정렬하기
margin: 0 auto; 로 주면 양옆이 화면 크기에 맞춰 자동으로 가운데 정렬됨. 위아래 margin은 원하는대로
Web programming/html&css
2018. 7. 29. 18:35