【发布时间】:2021-12-09 03:51:16
【问题描述】:
我正在尝试将此类转换为 css,其中一些东西可以直接转换。
但是这 3 个道具我不确定是否有可能拥有它 tailwind.css?
.toast-top-center {
position: fixed;
z-index: 99;
top: 10%;
left: 50%;
transform: translate(-50%, -50%);
}
Trying to add with tailwind CSS
.toast-top-center {
@apply fixed z-40;
top: 10%;
left: 50%;
transform: translate(-50%, -50%);
}
``
【问题讨论】:
-
我认为
transform道具是不可能的。但是Left: 50%;=left-1/2。对于Top: 10%;,您可以使用this。
标签: html css sass tailwind-css