1. Original Definition First define in css: body, html { width: 300px; height: 300px; } 2. JS operation, taking width modification as an example// Get the body and html node styles (mainly html here, it is not clear how to get it at first) let bodyStyle = document.body.style let htmlStyle = document.getElementsByTagName('html')[0].style // Get the width of the browser. Width can also be set to any value. let width = document.documentElement.clientWidth || document.body.clientWidth // Reset body width bodyStyle.width = `${width}px` // Reset html width htmlStyle.width = `${width}px` // Or other style modifications, such as: htmlStyle['min-width'] = `${width}px` 3. Effect: Width has been modifiedThis is the end of this article about how to modify the style of HTML body in JS. For more information about how to modify the style of HTML body in JS, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to replace all tags in html text
>>: Use tomcat to deploy SpringBoot war package in centos environment
I've been learning Docker recently, and I oft...
Preface Recently, I accidentally discovered MySQL...
Table of contents What is MVCC Mysql lock and tra...
Database transaction isolation level There are 4 ...
Lists are used to list a series of similar or rela...
Preface echarts is my most commonly used charting...
The crontab command is used by Unix and Linux to ...
at at + time at 17:23 at> touch /mnt/file{1..9...
Today, I fell into the trap again. I have encount...
1. Overview The image in Docker is designed in la...
Q: Whether using Outlook or IE, when you right-cl...
environment Server: centos7 Client: window Deploy...
CSS image splicing technology 1. Image stitching ...
1. Installation environment Docker supports the f...