Программисты Html
-
Anonymous
Некрасивые белые пиксели внутри кнопки
Сообщение
Anonymous »
Кнопка:
стиль:
Код: Выделить всё
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer {
.btn {
@apply relative flex min-w-[150px] justify-center overflow-hidden
rounded-full border-2 border-green-800 bg-transparent py-4
outline-none hover:bg-transparent;
}
.btn--bg {
@apply absolute left-0 top-0 -z-[10] box-border h-full w-full rounded-full border outline-none;
}
.green {
@apply border-green-600 bg-green-600 hover:border-green-600 hover:bg-white hover:text-green-600;
}
* {
box-sizing: border-box;
}
}
Проблема:
https://play.tailwindcss.com/ZN4HTmjljB
Как удалить эти белые пиксели?>
Подробнее здесь:
https://stackoverflow.com/questions/734 ... -of-button
1767648952
Anonymous
Кнопка:
[code]
Button
[/code]
стиль:
[code]@tailwind base;
@tailwind components;
@tailwind utilities;
@layer {
.btn {
@apply relative flex min-w-[150px] justify-center overflow-hidden
rounded-full border-2 border-green-800 bg-transparent py-4
outline-none hover:bg-transparent;
}
.btn--bg {
@apply absolute left-0 top-0 -z-[10] box-border h-full w-full rounded-full border outline-none;
}
.green {
@apply border-green-600 bg-green-600 hover:border-green-600 hover:bg-white hover:text-green-600;
}
* {
box-sizing: border-box;
}
}
[/code]
Проблема:
https://play.tailwindcss.com/ZN4HTmjljB
[img]https://i.sstatic.net/X2mXh.png[/img]
Как удалить эти белые пиксели?>
Подробнее здесь: [url]https://stackoverflow.com/questions/73442068/ugly-white-pixels-inside-of-button[/url]