蓝桥杯Web应用开发-CSS3 新特性【练习二:获得焦点验证】

页面上有一个姓名输入框和一个密码输入框,当聚焦输入框时,输入框的背景颜色会发生改变,
新建一个 index3.html 文件,在其中写入以下内容。

DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Documenttitle>
    <style>
      input:focus {
        background-color: rgb(255, 153, 0);
      }
    style>
  head>
  <body>
    姓名:<input type="text" /><br />
    密码:<input type="password" />
  body>
html>

蓝桥杯Web应用开发-CSS3 新特性【练习二:获得焦点验证】_第1张图片

你可能感兴趣的:(蓝桥杯Web应用开发(大学组),前端,css3,css,蓝桥杯,html5)