일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- HTML
- ChIPseq
- CUT&RUN
- pandas
- PYTHON
- single cell analysis
- scRNAseq
- MACS2
- Batch effect
- python matplotlib
- CSS
- single cell rnaseq
- 비타민 C
- CUTandRUN
- cellranger
- DataFrame
- drug muggers
- 싱글셀 분석
- ngs
- single cell
- github
- EdgeR
- Git
- js
- scRNAseq analysis
- Bioinformatics
- javascript
- drug development
- julia
- matplotlib
Archives
- Today
- Total
바이오 대표
[CSS] Block & Inline 특징 본문
Block | Inlines |
Height & Width | x |
Margin, padding, border | x |
Block 예시)
* Browser 이 자동으로 box(block)에 style(공백 포함) 을 준다 = user agent stylesheet
<!DOCTYPE html>
<html lang="kr">
<head>
<title>HTML input Exercise</title>
<style>
html {
background-color: tomato;
}
div {
height: 150px;
width: 150px;
background-color: whitesmoke;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
↓
'Front_end' 카테고리의 다른 글
[JS] alert( ), prompt( ), confirm( ) 알림창 (0) | 2021.09.24 |
---|---|
[CSS] Block - Margin, Padding, Border (2) | 2021.08.13 |
[CSS] Box (block) & Inlines (0) | 2021.08.12 |
[CSS] CSS 기본형식 및 HTML 적용 방법 (0) | 2021.08.12 |
[HTML] <div></div>, Semantic 태그들 (0) | 2021.08.08 |