复习php教学视频经验总结

复习php教学视频经验总结
点击领取淘宝京东拼多多唯品会优惠券
1,css(cascading style sheet),php(professional hypetext preprocessor)
2,apache 的作用是解析网页语言并接收用户的请求后做出响应。
3,十六进制颜色值:红绿蓝。$ffeeaa
4,<button>按钮</button> 默认type='submit‘
5,input输入框匹配查询
<input type="text" name="pwd" list="search">
              <datalist id="search">
                <option>小娘子</option>
                <option>小孩子</option>
                <option>小孩子大心眼</option>
                <option>小孩子大心眼多</option>
              </datalist>
6,<fieldset>
         <legend>身份信息</legend>
        <input type='text'>
      </fieldset>
fieldset
7,为下拉菜单分组
   <select>
     <optgroup label='服装'>
      <option>男装</option>
    </optgroup>
    <optgroup label='母婴用品'>
      <option>奶嘴</option>
    </optgroup>
  </select>
optgroup
8,自动获取输入框焦点:autofocus ;required输入框不能为空;pattern配合正则使用。 <input type='text' name='' autofocus required  pattern='[a-z]'/>
9,css唯一选择器,不是这个文件里面只能有一个id='one'而是不能像class='one two'这样添加多个类。
class
10,取消a标签的下划线,text-decoration:none