Hey everyone, I have all these input boxes and I want to organize them in a 3x4 or 4x3 grid layout instead of having them stacked on top of each other. I've tried using grid and other code but it just doesn't seem to work. Do you have any suggestions on how to solve this? Keep in mind that this is for a chrome extension popup so there may be limitations due to the maximum width.
html {
background-color: #d63031
}
input {
border: white solid;
background: #;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
color: #574026;
-webkit-box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0, inset rgba(000, 000, 000, 0.7) 0 0px 0px;
-moz-box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0, inset rgba(000, 000, 000, 0.7) 0 0px 0px;
box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0, inset rgba(000, 000, 000, 0.7) 0 0px 0px;
}
<html>
<head>
<script src="script.js"></script>
</head>
<body style="width:600px">
<p>Text</p>
<p style="font-size:smaller"><em>Text</em></p>
/* Additional input fields go here */
<p><input style="background-color:#6c5ce7;border:none;" type="submit" id="send"></p>
</body>
</html>