• 智能AI问答!更聪明、更完整、原创作!
  • 一款基于GPT的超级AI机器人,可以回答问题、聊天、创作、写文案!

加点CSS 美化一下界面

发布于 2023-09-13 12:47:37

以下是在上述代码基础上添加了一些CSS样式来美化界面的例子:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>提交数据案例</title>
    <style>
        body {
            font-family: Arial, sans-serif;
        }

        h1 {
            text-align: center;
        }

        form {
            width: 400px;
            margin: 0 auto;
            text-align: center;
        }

        textarea {
            width: 100%;
            height: 100px;
            resize: none;
            padding: 5px;
        }

        button {
            margin-top: 10px;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
        }

        button:hover {
            background-color: #45a049;
        }
    </style>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
    <h1>提交数据案例</h1>

    <form method="post" action="submit.php" id="submitForm">
        <textarea name="data" rows="5" cols="50"></textarea>
        <br>
        <button type="button" id="copyBtn">复制</button>
        <button type="button" id="clearBtn">清空</button>
        <br>
        <input type="submit" value="提交">
    </form>

    <script>
        $(document).ready(function () {
            // 点击复制按钮
            $("#copyBtn").click(function () {
                var data = $("textarea[name='data']").val();
                navigator.clipboard.writeText(data);
                alert("已复制数据到剪贴板");
            });

            // 点击清空按钮
            $("#clearBtn").click(function () {
                $("textarea[name='data']").val("");
            });
        });
    </script>
</body>
</html>

在上述代码中,我们添加了一些CSS样式来美化界面。具体的CSS样式包括:

  • body:设置1`:将标题居中显示。
  • form:设置表单的宽度、水平居中以及文本居中对齐。
  • textarea:设置多行输入框的宽度、高度,并取消了默认的调整大小功能。
  • button:设置按钮的上边距、内边距、背景颜色、文字颜色、边框及鼠标悬停时的背景颜色。

通过添加这些 CSS 样式,你可以让界面看起来更加美观和易于使用。当然,你也可以根据自己的需求进行进一步的样式调整。

0 条评论

发布
问题

在线
客服