how to create a shape in css
div {
clip-path: polygon(100% 100%, 100% 100%, 100% 100%)
}
how to create a shape in css
div {
clip-path: polygon(100% 100%, 100% 100%, 100% 100%)
}
square button html
<html>
<head>
<style>
/* This variable is just to show the you have to
put the same value for width and height, other wise
it won't be square. You don't actually need the var*/
:root { --size-1: 100px }
.square { width: var(--size-1); height: var(--size-1);
</style>
</head>
<body>
<button class="square"></button>
</body>
</html>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us