I wrote in vue's html function setRem () { let htmlWidth = document.documentElement.clientWidth || document.body.clientWidth; //Detect the screen width of html and body document.documentElement.style.fontSize= htmlWidth/7.5 + 'px'; //Set the font-size to 100px on a 750 screen, so that the converted rem can see at a glance how many px it was before. You can choose the screen size for development, 3.2 with a screen width of 320 is also acceptable. } setRem(); window.onresize = function () { //Browser size changes to trigger the window.onresize function, and then trigger the function setRem() setRem() } - Then configure postcss-pxtorem in .postcssrc.js (.postcssrc.js is a file automatically generated by the scaffolding. After configuration, run npm run dev again): The ones in the red circle need to be configured, and the rest are built-in: 'postcss-pxtorem': { rootValue: 100, //Root element size setting, that is, HTML font-size unitPrecision: 5, //How many decimal places to keep in rem propList: ['*'], //It is a list of properties that will be converted. Here it is set to ['*'] all. If you need to set only the border, you can write ['*', '!border*'] selectorBlackList: ['.radius'], // is an array for filtering CSS selectors. For example, if you set it to ['fs'], then for example, the fs-xl class name, the px style will not be converted. Regular expression writing is also supported here. replace: true, //I really don't know what this is used for. Anyone who knows please tell me mediaQuery: false, //Not valid in media queries (like @media screen) minPixelValue: 12 //Pixels less than 12 will not be converted} After configuration, you can re-run npm run dev 200px width and height 200px becomes 2rem and the configured 100px is the font-size. rootValue is 100 The style of setting the class name to radius is not converted Summarize The above is the mobile adaptation that the editor introduced to you to automatically convert px to rem. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! |
<<: Is the tag li a block-level element?
>>: Apache Calcite code for dialect conversion
Recently, many students have asked me about web p...
HTML+CSS 1. Understanding and knowledge of WEB st...
As one of the most popular front-end frameworks, ...
1. Caches - Query Cache The following figure is p...
Body part: <button>Turn on/off light</bu...
Table of contents 1. ChildNodes attribute travers...
1. Download docker online yum install -y epel-rel...
Project scenario: When running the Vue project, t...
Method 1: Use the SET PASSWORD command MySQL -u r...
Front-end project packaging Find .env.production ...
1. Environmental Description (1) CentOS-7-x86_64,...
View Database show databases; Create a database c...
1. Problem The project developed using Eclipse on...
Preface In the process of continuous code deliver...
Preface: I believe that those who need to underst...