<!DOCTYPE html>
<html>
<head>
</head>
<body>
<footer>
<div class="chat-input-container">
<form id="chat-form">
<input type="text" id="user-input" required>
<input id="submit-button" type="submit">
</form>
</div>
</footer>
</body>
</html>
body {
margin: 10;
min-height: 100vh;
}
.chat-input-container {
display: flex;
flex-direction: column;
width: 100%;
}
#user-input {
padding: 5px;
flex-grow: 1;
}
#submit-button {
padding: 5px 10px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
#chat-form {
display: flex;
column-gap: 5px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.