问答详情
源自:6-3 给点提示呗 - placeholder属性的使用

我这样写为啥不会放在表格里?

<!DOCTYPE html>

<html>


<head>

    <meta charset="UTF-8">

    <title>input-placeholder</title>

</head>


<body>

    <table>    

        <tr>

            <td>

                NAME:

                <input type="text" placeholder="fuck" />

            </td>

        </tr>

        <tr>

            <td>

                PW:

                <input type="password" placeholder="inputyourps" />

            </td>    

        </tr>

    </table>    

</body>


</html>


提问者:EY7348293 2024-08-26 23:26

个回答

  • 寒星孤月
    2024-09-04 16:05:00

    已经在表格,表格设置一下边线就看出来了
    <table border="1">...</table>