'Programming/css'에 해당되는 글 23건

  1. 2014.05.15 css box model
  2. 2011.03.09 크롬과 IE에서 CSS 차이점 - body / background-color 2
  3. 2009.04.09 CSS Naked day! 2
Programming/css2014. 5. 15. 11:05
css는 box model 을 기반으로 한다
친숙(?) 한 margin border padding으로 간격조절이 되는데
css 는 출력될 요소들을 하나의 박스에 가둬두고
박스의 안/밖간격을 통해 제어하게 된다.

크롬크롬~ ㅋ


[링크 : http://www.codeproject.com/Articles/227840/CSS-Basics-The-Box-Model-Margin-and-Padding]

'Programming > css' 카테고리의 다른 글

CSS / JS 파일 용량 줄이기  (0) 2015.09.18
css selector  (0) 2015.09.14
css 관련  (4) 2015.09.08
크롬과 IE에서 CSS 차이점 - body / background-color  (2) 2011.03.09
CSS Naked day!  (2) 2009.04.09
Posted by 구차니
Programming/css2011. 3. 9. 17:07
IE 에서는
body
{
    background-color:#000000;
}
이러면 되는데

크롬에서는
html, body
{
    background-color:#000000;
}
이렇게 해야만 된다 -_-

그리고 이미지 경로도
tr {
    background: transparent url(/shadow-down.gif) no-repeat 0% 100%;
    display: block;
    position: relative;
    width: 828px;
}
/ 의 유무에 따라 크롬에서는 민감하게 작동한다 -_-


'Programming > css' 카테고리의 다른 글

CSS / JS 파일 용량 줄이기  (0) 2015.09.18
css selector  (0) 2015.09.14
css 관련  (4) 2015.09.08
css box model  (0) 2014.05.15
CSS Naked day!  (2) 2009.04.09
Posted by 구차니
Programming/css2009. 4. 9. 10:06
Mr.Dust 님의 CSS Naked Day를 보고 따라해보려고 쑈를 했다 ^^;


일단 아무생각없이 HTML/CSS 에서 CSS를 전부 지우면 아래와 같은 에러가 나서 저장이 안된다.

그러면 아래의 내용을 넣으면 된다.


@charset "utf-8";
* {
}

'Programming > css' 카테고리의 다른 글

CSS / JS 파일 용량 줄이기  (0) 2015.09.18
css selector  (0) 2015.09.14
css 관련  (4) 2015.09.08
css box model  (0) 2014.05.15
크롬과 IE에서 CSS 차이점 - body / background-color  (2) 2011.03.09
Posted by 구차니