解决复选框、单选框与文字不能对齐的问题

怎甘沉沦 提交于 2019-11-26 16:46:48
<input type="checkbox"/><label>复选框</label>
<input type="radio"/><label>单选框</label>
    label {
      font-size: 12px;
   }
/*Method 1:*/
   input {
      vertical-align: text-bottom;
      margin-bottom: 2px;
   }
/*Method 2*/
   input {
        vertical-align: middle;
        margin-top: -2px;
        margin-bottom: 0px;
   }

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!