UNPKG

fix.css

Version:

This npm style package provides a basic set of CSS rules to enhance the appearance and behavior of HTML elements on a website. The included rules address the box-sizing model, maximum width for images, 3D transformation of specific elements, and adjustmen

29 lines (23 loc) 272 B
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } img { max-width: 100%; } section, main, header, footer { transform: translate3d(0, 0, 0); } a { outline: none; } a img { -webkit-user-drag: none; }