:root {
--transition-duration: 2s;
--animation-duration: 5s;
}
div {
width: 100px;
height: 100px;
background: red;
opacity: 0;
transition: opacity var(--transition-duration);
will-change: transform, opacity;
}
div:hover {
animation: mymove var(--animation-duration) var(--transition-duration)
infinite;
opacity: 1;
}
@keyframes mymove {
to {
transform: translateX(200px);
}
}
justify-content: space-between
и gap
одновременно?remove_action('wp_head', 'wp_shortlink_wp_head');
удаляет shortlink из исходного кода внутри <head>
. Но вордпресс добавляет shortlink еще в заголовок ответа сервера (http header). Нужно убрать еще один action:remove_action( 'template_redirect', 'wp_shortlink_header', 11 );
remove_action( 'wp_head', 'wp_shortlink_wp_head' );
gulp.task('watch', gulp.series('build', 'browserSync', async function() {
gulp.watch(config.src + config.css.src, gulp.series('build'));
gulp.watch(config.src, browserSync.reload);
}));
label:has(+ .field-error) {
border: 2px solid red;
}
Если просто вставить SVG на страницу и не задавать ему никакие размеры, он отобразится размером 300px на 150px, что не поместилось — обрежется
<svg width="18" height="19"><use xlink:href="#exit"></use></svg>
const arrInput = (consentCheckbox === null)
? [!mailArr.length, !inputEmptyArr.length]
: [!mailArr.length, !inputEmptyArr.length, consentCheckbox.checked];
btnSubmite.classList.toggle('valid-success', arrInput.every((x) => x === true));