Putting css borders around radio buttons

前端 未结 7 1945
遥遥无期
遥遥无期 2020-12-01 14:37

I\'m trying to get a garish red border around some radio buttons, but it is not showing up in Firefox latest or Chrome latest. Work fine in IE9/IE8.

Each of the inp

7条回答
  •  温柔的废话
    2020-12-01 15:09

    This may help you:

    .style {
      border: 1px solid red;
      width: 20px;
      height: 20px;
      text-align: center;
      margin-top: 2px;
      background-color: #f0ffff;
    }

    View on JSFiddle

提交回复
热议问题