언어공부/python27 [CSS] ID selector vs Class seletor ID selector vs Class seletor ID selector (한 페이지에 한개만 #로 지칭)Selects an element with a given ID. Only one per page! (one html) we refer to ID in CSS with a dash You say yes I say no you say goodbye I say hello Class selector (여러개 묶어서 지정할 때 dot으로 지칭)IDs are great to single out individual elements but oftentimes we want to have multiple elements that look similar but we don't want all allies for ins.. 2018. 3. 5. color in css Color in CSS 1. Built in Colors h1 { color:Thistle;}li { color:steelblue;} Reference : http://colours.neilorangepeel.com/ 2. Hexadecimal # + 6 digit string(hexadecimal numbers from 0-F) h1 { color: #212353} li { color: #FF4550} 3.RGB 3 channels: Red, Green and Blue. Each ranges from 0-255h1 { color: rgb(0,43,222)} li{ color: rgb(111,34,2)} 4.RGBAJust like RGB, but with an alpha(transparency) cha.. 2018. 3. 2. Form연습 DOCTYPE html> Document Register First Name: Last Name: Male: Female: Other: Email: Password: Birthday: Month Jan Feb Mar Day 10 11 Year 1988 1987 1986 I agree to the terms and conditions: 2018. 3. 1. CSS- boxsizing 생활코딩 : https://opentutorials.org/course/2418/13405 small, large로 이름지은 두가지 텍스트 박스를 만든다. 하나는 10px 다른 하나는 30px로 border를 만들고 같은 width를 적용시켜 본다.두개 박스의 전체적인 크기가 다르다. 왜냐하면 width는 border등을 고려하지 않은 부분을 기준으로 적용되기 때문이다.이럴 때 필요한 개념이 box-sizing: border-box; 모든 값을 포함해서 width적용하기에 보더크기가 달라도 전체 길이는 같게 된다. 각 값에 적용하거나*{box-sizing: boder-box;}로 전체에 적용해주기. div{ margin: 20px; width:150px; /* 둘다 똑같은 width값을 줬는데 전체적길이.. 2018. 2. 22. 이전 1 2 3 4 5 6 7 다음