목록HTML+CSS+JavaScript/세미나 (20)
가오리의 코딩일기
stingray Information Kind Information 크기: 1~2m 특징: 독이 있다 천적: 상어, 돌고래, 사람 먹이: 작은 고기, 조개류, 갯지렁이, 갑각류 서식지: 서태평양 지역의 수심 10m 남짓한 얕은 바다 HOME Kind Whiptail Stingray Diamond Stingray Blue Stingray Groovebelly Stingray Common Stingray HOME /* style.css */ body { background-color: #384b60; } article { width: 300px; height: 500px; border: 5px double #384b60; border-radius: 10px; margin: 150px auto; backgro..
Hair Studio Style Your hair Is Style Your Life Find Out Read More HOME FEATURES SERVICES TESTIMONIALS MEET US FEATURES Why Choose Use Experienced Staff Donec eget ultricies sapi. Sed porttitor, mauris ater lob facilisis, elit sapie eleifend ligula. Pre Booking Online Donec eget ultricies sapi. Sed porttitor, mauris ater lob facilisis, elit sapie eleifend ligula. Affordable Cost Donec eget ultric..
https://www.youtube.com/watch?v=MjmUpXhaqRM&list=PLYNmD6nHXpCZ6d-UAVRxWSvK8WOPMxXeA&index=1 타모디자인 검색 HOME ABOUT SERVICE CONTACT 총알오징어, 세마리에 만원 우리는 전기를 이용해 실수인척 새끼 오징어를 불법 포획합니다. 지금까지 해먹은 돈 $128,021 씨를 말린 오징어 마릿수 93,234 최종 목표 마릿수 100,000+ 와사비 간장 57,221,084 ABOUT 우리는 재규어처럼 재빠르게, 남들과는 다르게 오징어를 낚아챕니다. 치밀한 계획 우리는 계획적으로 단속을 피해서 치밀하게 일을 처리합니다. MORE 은신 기술자 확보 우리는 언제든지 환술에 걸린것처럼 순식간에 시야에서 사라질 수 있습니다. MOR..
1. gradient 수정 html은 그대로, css만 수정함(https://ryu-ddo.tistory.com/75) - 수평과 수직 모두 가운데 정렬 - 원을 만들 때 border-radius: 50px 사용 body{ background-color: khaki; } .circle{ margin: 40px auto; background: linear-gradient(0.25turn,#ffb6c1, #f08080,#ffb6c1); border-radius: 50%; /* 원 : 50% */ border: 5px solid white; width: 600px; height: 600px; justify-content: space-around; /*인접한 각 항목 간의 간격을 동일하게*/ } .square{..
HOME MOVIE PHOTO body{ margin: 0; padding: 0; overflow-x: hidden; } .wrapper{ flex-direction: row; } .left{ background-color: black; width: 300px; height: 100vh; position: fixed; display: flex; align-items: center; } h2{ color: white; text-indent: 30px; } h2:hover{ color: #4D54DC; } img{ width: 1400px; height: 100%; margin-left: 310px; }
The Best Colors Tomato #FF6347 Teal #008080 Burlywood #DEB887 Thistle #D7BFD7 body{ background-color: lightgrey; overflow: hidden;} .header h1{ text-align: center;} p{ font-size: x-large; font-weight: bolder; } .container{ display: flex; align-items: center; justify-content: space-around ; margin: 20px 600px; } .name{ width: 205px; height: 105px; margin: 10px; background-color: white; position :..
body{ background-color: khaki; overflow: hidden; } .circle{ margin: 40px auto; background: linear-gradient(0.25turn,#ffb6c1, #f08080,#ffb6c1); border-radius: 100%; border: 5px solid white; width: 600px; height: 600px; } .square{ border: 5px solid white; margin: 27px auto; width: 70px; height: 70px; background-color: #b0e0e6; } .big{ width: 400px; height: 400px; margin-top: 100px; border-color: b..
1. 세미나 전 과제 정답 (CSS) h1, h2, ul, p { margin: 0; padding: 0; } /*내가 지정 안함_1*/ li { list-style-type: none; } /*내가 지정 안함_2*/ body { background-attachment: fixed; /*내가 지정 안함_3, 스크롤바x? */ background-size: cover; background-position: center; /*촛불있는 배경이 가운데 오게*/ background-image: url(images/halloween-background.gif); background-color: #666; /*딱히 필요 없을 듯*/ } .wrapper { background-color: #ddd; width: 800..
Jack-O'-Lantern A jack-o'-lantern is a carved pumpkin, turnip, or other root vegetable lantern associated with Halloween. Its name comes from the phenomenon of a strange light flickering over peat bogs, called will-o'-the-wisp or jack-o'-lantern. Information jack@veamcamp.com 000-3234-2344 Seoul,korea Skills Photoshop Web Front-End Education HAPPY HALLOWEEN body{ margin: 10px; padding: 0px; back..
Apple Orange Kiwi Strawberry body, ul { margin:0; /* object와 화면과의 여백-> 외부여백*/ padding:0; /* object 안에 -> 내부여백*/ } body{ background-color: #fdd; /*배경색*/ } div{ width: 400px; height: 500px; background-color: white; margin: 150px auto; /*150px_위 아래 여백 지정, auto_좌우 여백을 가운데로 위치하게*/ border: 10px solid #dc4343; /*solid : 테두리 모양이 직선(기본)*/ border-radius: 100px; /*둥근 정도*/ text-align: center; /*글자위치*/ } img..