I searched the Internet for just a chrome solution. I need to change something in the stylesheet only in Chrome, but I can not find what I'm looking for on the Internet, or in stackoverflow. Chrome has the following to fill left and right
-webkit-padding-start-webkit-padding end
-webkit-padding-start
-webkit-padding end
But is there something for the upper and lower? OR am I lucky?
Use -webkit-padding-before to debug top , -webkit-padding-after for bottom padding.
-webkit-padding-before
top
-webkit-padding-after
JsFiddle example
(Up) - -webkit-padding-before
(Right - -webkit-padding-end
-webkit-padding-end
(bottom) - -webkit-padding-after
(left) - -webkit-padding-start
This hack looks like it can do the trick.
@media screen and (-webkit-min-device-pixel-ratio:0) { /* rules only apply in saf3+, chrome1+ */ }
Source: https://habr.com/ru/post/958027/More articles:Javascript Character Count - javascriptWhy can NSTableView redraw every cell when scrolling? - cocoaRecursive menu directive - angularjsHow to check if an expression attribute has been provided in a directive? - angularjsDOMNodeInserted / Removed polyfills (or similar events) - javascriptAdd selection to table row clickable (using download) - CSS - cssHow to get file size using HTML5 FileSystem interface? - javascriptImplementation of the prototype method - javascriptthe drop-down list in the navigation bar does not expand (bootstrap, angular, directives, routes) - javascriptCDI + driven concurrency in Java EE 7 - javaAll Articles