HTML·CSS에서 자주 사용하는 기술

4521 단어 HTMLCSS

먼저


자주 쓰는 기술이라 조사할 때마다 번거롭기 때문에 여기에 적으세요.

HTML 편


HTML 비어 있는 설명

<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title></title>
</head>
<body>

</body>
</html>

CSS 가져오기

<!-- cssの読み込み -->
<link rel="stylesheet" href="./css/xxx.css">

<!-- メディアクエリーで条件付きのcssの読み込み -->
<link rel="stylesheet" href="./css/xxx.css" media="screen and (min-width: 640px)">

JavaScript 가져오기

<!-- JavaScriptの読み込み -->
<script src="./js/xxx.js"></script>
전부 헤드 요소에 넣는 경우가 많아요.
우선 jQuery 등 라이브러리를 읽고 다른 외부 파일에 대해서는 대부분 추가 순서에 따라 기술한다
(처리에 따라 사용 전후)

CSS 편


미디어 쿼리

@media screen and (min-width: 640px) {
  /* 横幅640pxより大きくなると適応 */
}

상위 요소 초과

.body {
  width: 640px;
  margin: 0 auto;
}
.title {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  background: #ccc;
}
.title span {
  width: 640px;
}
↓↓↓ 이런 놈↓

브라우저에 해당합니다https://caniuse.com/#search=calc
브라우저에 해당합니다https://caniuse.com/#feat=viewport-units
보다 크면 같음

좋은 웹페이지 즐겨찾기