简体   繁体   中英

ignore a div while zooming in chrome

I would like to zoom in my react app(coreUI) with 'ctrl+PLUS' in chrome. but I want to ignore the height of the header and footer while zooming, is that even possible?

//html
<div className="ignore-zoom">
    <h1>title</h1>
<div>

//css
.ignore-zoom{
    width: 100%;
    height: 50px fixed !important;
}

我发现了这个https://css-tricks.com/zooming-squishes/,您可以尝试使用“ em”基本媒体查询来尝试解决此问题。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM