如何自定义此导航按钮图标?

时间:2015-01-02 04:38:01

标签: css wordpress

我想改变边界之类的东西。我已经知道如何更改3条颜色:

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

修改

.navbar-default .navbar-toggle { 
border: none; 
}

2 个答案:

答案 0 :(得分:1)

你只需要设计风格。

.icon-bar {
  font-size: 20px;
  padding: 7px 10px;
  width: 20px;
  border: 1px solid white;
  color: white;
  border-radius: 3px;
}
body {
  background: teal;
}
<div class="icon-bar">☰</div>

答案 1 :(得分:0)

将此添加到您的班级以修改边框半径,例如,您可以使用边框执行太多其他操作,您可以在此处检查所有这些操作LINK

-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;