Frontend 👩🏻‍💻/HTML&CSS

Frontend 👩🏻‍💻/HTML&CSS

[CSS] Flexbox Froggy Game

flex-flow:  flex-direction   flex-wrap  ; Q20.The two properties flex-direction and flex-wrap are used so often together that the shorthand property flex-flow was created to combine them. This shorthand property accepts the value of the two properties separated by a space.For example, you can use flex-flow: row wrap to set rows and wrap them.Try using flex-flow to repeat the previous level.  #po..

Frontend 👩🏻‍💻/HTML&CSS

[HTML] 절대경로(Absolute path)와 상대경로(Relative path)

경로(Path) 문서에서 다른 문서로 연결하거나 문서 내에 이미지 및 음악 파일을 넣을 때, 해당 파일의 위치를 브라우저에게 알려주어야 한다.는 href 속성을 이용해서, 는 src 속성을 이용해서 명시한다.이 때, 해당 파일의 위치를 경로(path)라고 한다.경로를 표기할 때 두가지 방법이 있는데 절대경로와 상대경로가 있다. 절대경로(Absolute path, Absolute pathname, Full path) 루트 디렉토리를 포함한 주소를 갖는 경로컴퓨터 상의 디렉토리에서 C:\를 항상 포함URL에서는 http://를 항상 포함항상 기준은 루트가 됨언제 쓰는가: 일반적으로 다른 사람이 만든 문서나 파일을 연결할 때, 그 외 다른 사이트를 연결할 때장점:루트 디렉토리를 항상 포함하기 때문에 외부에서도..

Frontend 👩🏻‍💻/HTML&CSS

[HTML] IE 호환성 크로스 브라우징 (Cross-browsing)

IE(Internet Explorer) 하위버전(10이하, 특히 8,9)에서 보여지는 화면은 현재 가장 일반적으로 우리가 이용하고 있는 모던 브라우저(예를 들어 크롬)과 다르게 동작한다. 크로스브라우징 이슈 해결방법:1. 하위 IE 웹 브라우저를 사용 할 때 발생할수 있는 CSS스타일 적용 issue를 해결하기 위해 특정 CSS 파일을 만든다.2. 해당 IE 버전에서의 웹 화면만 컨트롤 할 수 있도록 head태그 영역 맨 하단에 첨부 CSS폴더 내 ie8.css 파일은 IE9 미만에서만 적용IE8에서만 적용되고 다른 브라우저에선 동작하지 않음태그 첨부순서는 가장 마지막에

Frontend 👩🏻‍💻/HTML&CSS

[HTML] 반응형 웹 (Responsive) 처리

head태그 안에, 미디어쿼리(media query)@media screen and (max-width : 1200px) { .box { font-size : 40px; } } @media screen and (max-width : 768px) { .box { font-size : 30px; } }media query를 작성할 때는 CSS파일 최하단에 작성한다이유: css파일도 한줄씩 읽고 적용되므로 중복된 스타일조정은 캐스케이딩 되서 중복되더라도 가장 마지막 줄을 읽고 그걸로 수정해줌  권장되는 Breakpointmedia query 문법에서 max-width안에 넣는 브라우저 폭을 breakpoint라고 한다breakpoint는 원하는 만큼 여러개 넣을 수 있지만 권장되는..

Frontend 👩🏻‍💻/HTML&CSS

[HTML] <head>안에 들어가는 내용

HTML 문서에는 기본적으로  상대경로 vs. 절대경로1. css/style.css ➡︎ 상대경로2. /css/style.css ➡︎ 절대경로- 1번은 현재 HTML 파일과 같은 경로에 있는 css폴더 내의 style.css 파일을 의미- 2번은 현재 사이트의 메인경로(예를들어, www.tistory.com)부터 시작해서 www.tistory.com/css/style.css 파일을 첨부하라는 뜻- 즉, 슬래시( / )기호가 처음부터 붙어있으면 사이트 메인경로부터 시작하라는 의미 2.  3. - 사이트 제목- 사이트에 제목을 넣는다.- 브라우저 탭에 뜨는 이름이다. 4. - 메타 인코딩형식 지정 : charset="UTF-8"사이트검색 결과화면에 뜨는 글귀 수정하고 싶을 때:name = "descr..

Frontend 👩🏻‍💻/HTML&CSS

[CSS] #1-2 박스모델과 box-sizing

/* I found it should be written my post what I learned for fully understanding so I am going to talk about the box model of CSS in Korean. Hope you can also get my point. 😎 */ HTML웹페이지 문서의 골격을 만들고, CSS로 스타일링을 줄 때 우리는 박스모델이라는 개념을 접하게 된다. 하나의 콘텐츠가 웹 페이지 내부에 위치하게 될때, 하나의 콘텐츠는 박스모델을 갖는다. 박스모델은 4개의 박스로 구성이 되어있는데, 콘텐츠박스 > 패딩박스 > 보더박스 > 마진박스로 감싸진다. 박스를 만들 때 주의점이 하나 있다면, 원래 div박스에 width 값을 주면 패딩과 보더를 고려..

Frontend 👩🏻‍💻/HTML&CSS

[CSS] #1 The box model

In CSS we broadly have two types of boxes - block boxes and inline boxes. These characteristics refer to how the box behaves in terms of page flow and in relation to other boxes on the page. Boxes also have an inner display type and an outer display type. First, we will explain what we mean by block box and inline box. We will then explain what is meant by an inner and outer display type. If a b..

Frontend 👩🏻‍💻/HTML&CSS

[HTML] #1 Hypertext Markup Language

- 자료의 구조를 표현하기 위한 언어, 자료, Document- 세상에 존재하는 모든 웹 페이지는 HTML로 작성    더보기더보기What is HTML?HTML (Hypertext Markup Language) is a markup language that defines the structure of your content.

Frontend 👩🏻‍💻/HTML&CSS

[Sass] Architect : the 7 - 1 pattern

7 different folders for partial Sass files, and 1 main Sass file to import all other files into a compiled CSS stylesheet. The 7 folders: base/basic product definitionscomponents/one file for each componentlayout/define the overall layout of the projectpages/styles for specific pages of the projectthemes/want to implement different visual themesabstract/put code that doesn't output any CSS such ..

Frontend 👩🏻‍💻/HTML&CSS

[css] the problem of setting the font-size to pixels of body element

To set the font-size to pixels is very bad. body { font-size:10px; } /*very bad*/ for example, when they have bad sight and cannot see so good, then some people actually increase the default font size of their browser. The problem is that by doing so we actually override the browser font size setting that the user can manually change in the settings, and many people actually do that. Now if we s..

hyejin.frontend
'Frontend 👩🏻‍💻/HTML&CSS' 카테고리의 글 목록