Skip to content

Instantly share code, notes, and snippets.

View regecoder's full-sized avatar

regecoder

View GitHub Profile
@regecoder
regecoder / gist:650437cdf3ffd96d1a8095ecf59865bc
Last active December 22, 2023 00:44
CSS: Permet le positionnement horizontal centré d'un élément
.element-wrapper {
left: 50%;
}
.element {
position: relative;
left: -50%;
}
@regecoder
regecoder / gist:472ea92dbc86dc8ebe169993fa186f72
Last active February 20, 2024 08:38
CSS: Disable elastic scrolling in Chrome
html {
height: 100%;
overflow: hidden;
}
body {
height: 100%;
overflow: auto;
}