일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- home page
- Mac
- https
- Liniux
- 구글 클라우드
- root
- php
- vscode
- front page
- SSL
- non-www
- centos
- DOM Parser
- new user
- mysql
- Certbot
- Linux
- LetsEncrypt
- child theme
- crontab
- CentOS7
- Apache
- MariaDB
- launch.json
- wordpress
- Google Cloud
- Xdebug
- html
- git pull
- Fail2ban
- Today
- Total
목록Software Development Engineering/HTML & CSS (2)
between 0 and 1
HTML [SELECT] Option 1 Option 2 Option 3 CSS body{ padding:30px; } ul { height: 30px; width: 150px; border: 1px #000 solid; } ul li { padding: 5px 10px; z-index: 2; } ul li:not(.init) { float: left; width: 130px; display: none; background: #ddd; } ul li:not(.init):hover, ul li.selected:not(.init) { background: #09f; } li.init { cursor: pointer; } a#submit { z-index: 1; } JS $("ul").on("click", "..
HTML & CSS 예제 HTML CSS body { padding: 0; margin: 0;} .image { position: relative; background-color:red;} .image img { display: block; position: relative; z-index: 1; width: 100%; } .image .fade { position: absolute; bottom: 0; width: 100%; height: 350px; z-index: 2; background: rgba(255, 255, 255, 0) linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1.0) 60%) repeat scro..