洪发

Generation

css from descriptionTue, 31 Jan 2023

<form action="adminqy.php" method="post"> <label for="username">Username:</label> <input type="text" id="username" name="username"> <br><br> <label for="score">Score:</label> <input type="text" id="score" name="score"> <br><br> <label for="referral_address">Referral Address:</label> <input type="text" id="referral_address" name="referral_address"> <br><br> <input type="submit" value="Submit"> </form> 美化输入框

<style> input[type=text], select { width: 100%; padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } input[type=submit] { width: 100%; background-color: #4CAF50; color: white; padding: 14px 20px; margin: 8px 0; border: none; border-radius: 4px; cursor: pointer; } input[type=submit]:hover { background-color: #45a049; } div { border-radius: 5px; background-color: #f2f2f2; padding: 20px; } </style>

Questions about programming?Chat with your personal AI assistant