如何样式HTML选择/选项标签



我想创建一个下拉菜单与html选择,因此我想样式它以及。我想设置一个填充选项标签,这样他们就不会太拥挤,但我不能这样做。(不管用)任何想法?

#categories
{
padding: 10px 10px 10px 10px;
background-color: #826B78;
font-size: 20px;
color: white;
margin: 10px 10px 10px 10px;
border: none;
outline: none;
}
#categories option
{
margin: 30px 30px 30px 30px;
padding: 30px 30px 30px 30px;
font-size: 20px;
}

类别id属于选择标签

禁用默认设置可以让你有更多的自由-给你选择一个类,在这个类中使用以下命令:

-webkit-appearance:none; 
-moz-appearance:none; 
 appearance:none;
然后添加你的默认样式

很难用css样式选择菜单。最好的方法是使用jquery,你可以使用jquery设计样式并更好地控制代码。只需使用自定义jquery,如http://gregfranko.com/jquery.selectBoxIt.js/

我刚刚用jquery做了一个样式选择的例子,你可以在这里查看演示

// Code to convert select to UL
$('.select').each(function() {
  var $select = $(this).find('select'),
    $list = $('<ul />');
  $select.find('option').each(function() {
    $list.append('<li>' + $(this).text() + '</li>');
  });
  //Remove the select after the values are taken
  $select.after($list).remove();
  //Append Default text to show the selected
  $(this).append('<span>select</span>')
  var firsttxt = $(this).find('li:first-child').text();
  $(this).find('span').text(firsttxt)
  // On click show the UL
  $(this).on('click', 'span', function(e) {
    e.stopPropagation();
    $(this).parent().find('ul').show();
  });
  // On select of list select the item
  $(this).on('click', 'li', function() {
    var gettext = $(this).text();
    $(this).parents('.select').find('span').text(gettext);
    $(this).parent().fadeOut();
  });
})
// On click out hide the UL
$(document).on('click', function() {
  $('.select ul').fadeOut();
});
body {
  font-family: 'arial', san-serif;
}
.select {
  width: 200px;
  height: 30px;
  border: 1px solid #ddd;
  line-height: 30px;
  position: relative;
  margin-bottom: 40px;
}
.select span {
  display: block;
  color: #333;
  font-size: 12px;
  padding: 0 10px;
}
.select ul {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 300px;
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}
.select ul > li {
  font-size: 12px;
}
.select ul > li {
  color: #333;
  display: block;
  padding: 2px 8px;
  text-decoration: none;
  line-height: 24px;
}
.select ul > li:hover {
  background: #e4f4fa;
  cursor: pointer;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label>First Select</label>
<div class="select">  
    <select>
         <option>Item</option>
         <option>Item 2</option>
         <option>Item 3</option>
    </select>
</div>
<label>Second Select</label>
<div class="select">
    <select>
         <option>this 1</option>
         <option>this 2</option>
         <option>this 3</option>
    </select>
</div>

html5规范没有提供通用样式属性来定制这个用户输入控件元素。在网上找到的唯一方法是使用label元素来引用这个控件,以达到样式化的目的

你可以给样式选择标签像这样或者你可以使用类名或id

select
{
    display: inline-block;
    width: 150px;
    height: 20px;
    padding: 3px 6px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 20px;
    color: #555555;
    vertical-align: middle;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

避免使用<元素,因为它们不能在WebKit浏览器中完全样式化。>

根据那些bootstrap人员

相关内容

  • 没有找到相关文章

最新更新