邮箱输入框和文本输入框同时定义样式时,写法正确的是( )
A: input[type="text"],[type="email"] { }
B: input([type="text"],[type="email"] ){ }
C: input[type="text"][type="email"] { }
D: input(type="text"),(type="email") { }
A: input[type="text"],[type="email"] { }
B: input([type="text"],[type="email"] ){ }
C: input[type="text"][type="email"] { }
D: input(type="text"),(type="email") { }
举一反三
- 密码输入框和文本输入框样式同时定义时,写法正确的是( ) A: input[type="text"] [type="password"] { } B: input[type="text"],[type="password"] { } C: input([type="text"],[type="password"]) { } D: input(type="text"),(type="password") { }
- 以下HTML代码中,用于实现密码输入的是: A: <;input type="text" />; B: <;input type="radio" />; C: <;input type="password" />; D: <;input type="email" />;
- HTML代码<input type="text" name="email">表示什么?
- 代码如何编写,可以实现邮箱的输入框禁用自动完成功能(用户第二次在输入框中输入同样的内容时,不会进行内容的提示)?[img=497x161]17e0bd36d7ff94e.png[/img] A: 邮箱:<;input type="email" name="email" autocomplete="on">; B: <;form autocomplete="off">; C: 邮箱:<;input type="email" name="email" autocomplete="off">; D: 邮箱:<;input type="email" name="email" autocomplete="of">;
- 如果要在表单里创建一个单行文本输入框,以下写法中正确的是( )。 A: <input /> B: <input type="text" /> C: <input type="password" /> D: <input type="tel" />