Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Quartz
- Windows 10
- 네트워크
- plugin
- VirtualBox
- Windows
- lsof
- IntelliJ
- grep
- context
- JavaScript
- vscode
- import
- GIT
- find
- Eclipse
- Mac
- maVen
- ssh
- resource
- xargs
- port
- 단축키
- tomcat
- Source
- bash
- netsh
- web.xml
- 줄바꿈 문자
- profile
Archives
- Today
- Total
develog
[css] console 에서 css 값 변경하기 본문
<button class="next-button">다음2</button>
.next-button {
position: fixed;
left: 0;
/* bottom: 0; */
top: 100px;
width: 100vw;
height: 52px;
color: white;
background-color: var(--primary);
transform: translate(0px, 0px);
/* pointer-events: none; */
/* opacity: 0; */
z-index: 999;
}
// element 가져오기
document.querySelector('.next-button')
// css 정보 가져오기, CSSStyleDeclaration
window.getComputedStyle(document.querySelector('.next-button'))
// css 값 확인
window.getComputedStyle(document.querySelector('.next-button')).position
window.getComputedStyle(document.querySelector('.next-button')).top
// css 값 변경
document.querySelector('.next-button').style.top = '200px';
// 변경된 값 확인하기
window.getComputedStyle(document.querySelector('.next-button')).top
Comments