일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스마트컨트렉트프록시
- ethers v6
- git rebase
- chainlink 설명
- ethers
- vue기초
- 오블완
- ethers websocket
- 머신러닝기초
- 프록시배포구조
- 티스토리챌린지
- ambiguous function description
- rust 기초
- 체인의정석
- 컨트렉트 동일한 함수이름 호출
- 러스트 기초 학습
- 스마트컨트렉트 예약어 함수이름 중복
- Vue
- 러스트기초
- ethers type
- ethers typescript
- 스마트 컨트렉트 함수이름 중복
- 러스트 기초
- SBT표준
- 컨트렉트 배포 자동화
- 스마트컨트렉트테스트
- 스마트컨트렉트 함수이름 중복 호출
- multicall
- Vue.js
- nest.js설명
Archives
- Today
- Total
체인의정석
남이 만든 CSS 수정하기 본문
728x90
반응형
이용약관과 같은 간단한 css를 수정하는 작업을 하였다.
이럴땐 먼저 class 를 체크해 본다. 이전에 작업해 놓은 사람이 정의해둔 class로 인하여 html 문법이 적용되지 않을 수 있다.
<li> 태그를 사용하면 앞에 검은색 점이 나와야 하는데 설정값에 아래 블로그에서 출저를 가져온 목록 중 disc가 disabled로 나오지 않았다.
목록(list) 관련 스타일 속성(Property)
list-style-type
: 목록의 머리 기호를 정한다.
- none : 지정하지 않음
- disc : 검은 원형
- lower-roman : 소문자 로마자
- decimal : 1부터 시작하는 10진수
- upper-alpha : 대문자 알파벳
- circle : 원형
- square : 사각형
- lower-alpha : 소문자 알파벳
- upper-roman : 대문자 로마자
예)
css
.circle {list-style-type: circle} .disc {list-style-type: disc} .square {list-style-type: square} .decimal {list-style-type: decimal} .lower-roman {list-style-type: lower-roman} .upper-roman {list-style-type: upper-roman} .lower-alpha {list-style-type: lower-alpha} .upper-alpha {list-style-type: upper-alpha} .none {list-style-type: none} Colored by Color Scripter |
cs |
html
<ul> <li class="circle">circle</li> <li class="disc">disc</li> <li class="square">square</li> <li class="decimal">decimal</li> <li class="lower-roman">lower-roman</li> <li class="upper-roman">upper-roman</li> <li class="lower-alpha">lower-alpha</li> <li class="upper-alpha">upper-alpha</li> <li class="none">none</li> </ul> Colored by Color Scripter |
cs |
- circle
- disc
- square
- decimal
- lower-roman
- upper-roman
- lower-alpha
- upper-alpha
- none
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=muri1004&logNo=221025461768
이러한 스타일들을 보고 만약 필요한게 disabled 되어 있다면 새로운 클래스를 만들어서 이름을 달아준다.
나는 dot 클래스를 새로 달고 disabled 하지 않는 명령어를 두었다. 이렇게 되면 우선순위 처리에 의하여 내가 달아둔 name의 css 클래스가 먼저 적용되게 된다.
또한 <p>를 쓰면 단락구분
<ol> 를 쓰고 <li>를쓰면 1,2,3,4,... 순서대로 리스트가 나오게 되고,
<ul>을 쓰고 <li>를 쓰면 정렬되지 않은 상태로 리스트가 나오게 된다.
list style을 여기에 넣어주게 되면 로마 문자, 영어 대소문자, 숫자 등으로 바꿀 수도 있어서 이를 이용하여 css를 수정하였다.
728x90
반응형
'개발 > frontend' 카테고리의 다른 글
React 시작해보기 - 튜토리얼 사이트에서 기초 특징 빠르게 익히기 (0) | 2023.07.15 |
---|---|
html 웹 서버로 명령어 한번에 띄우기 http-server (0) | 2023.06.10 |
vue.js 기본틀 잡기 (dom 조절 및 , 함수 실행 등) (0) | 2020.06.25 |
Vue.js 프로젝트 기본 구조 잡기 (0) | 2020.06.24 |
vue router (0) | 2020.06.24 |
Comments