⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 css_html.aspx

📁 几个不错的ASP.NTE例子
💻 ASPX
字号:
<html>
<head>
   <style>
      .inputstyle  
      { 
          font: 14pt 宋体;
          background-color:yellow;
          border-style:dashed;
          border-color:red;
          width:300; 
      }
      .selectstyle 
      { 
          font: 14pt 宋体;
          background-color:lightblue;
          color:purple; 
      }

      .buttonstyle 
      { 
          font: 9pt 宋体;
          background-color:lightgreen;
          border-color:black;
          width:100 
      }
  </style>
</head>
<body>
<H3>为HTML控件增加风格<Hr></H3>
  <p><font face="宋体"><h4>文本输入样式</h4></font><p>
  <input type="text" value="为HTML控件增加风格" class="inputstyle" runat="server"/>

  <p><font face="宋体"><h4>选择输入样式</h4></font><p>
  <select class="selectstyle" runat="server">
    <option>选项一</option>
    <option>选项二</option>
    <option>选项三</option>
  </select>
  <p><font face="宋体"><h4>按钮样式</h4></font><p>
  <button class="buttonstyle" runat="server">按钮一</button>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -