일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Git
- javascript
- CUT&RUN
- julia
- cellranger
- 비타민 C
- single cell rnaseq
- Bioinformatics
- js
- single cell
- pandas
- drug development
- 싱글셀 분석
- MACS2
- Batch effect
- CSS
- HTML
- matplotlib
- scRNAseq
- ChIPseq
- python matplotlib
- ngs
- PYTHON
- github
- scRNAseq analysis
- single cell analysis
- drug muggers
- CUTandRUN
- EdgeR
- DataFrame
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 |