본문 바로가기

다이앤달링619

The 30 CSS Selectors You Must Memorize https://code.tutsplus.com/tutorials/the-30-css-selectors-you-must-memorize--net-16048 The 30 CSS Selectors You Must Memorize * 전체 다 선택하기1234* { margin: 0; padding: 0;} ul안에 있는 li안에있는 a(anchor태그) 만 적용시키기1234ul li a { border: 1px solid lightgrey;} adjacent 123ul + p { color: red;}This is referred to as an adjacent selector. It will select only the element that is immediately preceded by the former.. 2018. 3. 5.
[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.
이별을 극복하려면 얼마나 걸릴까? 에 대한 영어 대답들 I don't pretend to know what the meaning of life is but I think you have to accept it. Booze however also works. I know it seems cliche, but it dulls things...- I have been through it all before ten years prior. It took me meeting someone better to forget her, so I know there is always a light at the end of the tunnel. Eventually, someone will make me forget her. But, your right. Booze(술마시기) doe.. 2018. 3. 3.
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.