IE6/IE7 css border on select element

前端 未结 14 725
面向向阳花
面向向阳花 2020-11-28 11:26

Does anyone have a solution for styling the borders of \"select\" elements in Internet Explorer using CSS?

14条回答
  •  感情败类
    2020-11-28 11:53

    It solves to me, for my purposes:

    .select-container {
      position:relative;
      width:200px;
      height:18px;
      overflow:hidden;
      border:1px solid white !important
    }
    .select-container select {
      position:relative;
      left:-2px;
      top:-2px
    }
    

    To put more style will be necessary to use nested divs .

提交回复
热议问题