i am trying to make responsive button with text on it but i couldn't make the text stay in the button size using css and html only
body {
margin: 0;
}
.button {
float: left;
width: 20vw;
height: 20vh;
text-align: center;
font-size: 6vmin;
font-weight: bold;
}
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' type='text/css' href='chatstyle.css'>
</head>
<body>
<button class="button">justlongtext</button>
</body>
using this code and then try to resize the window for example to 190px 310px the text will go out of the button