作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有一个 ionic 移动应用程序,我目前正在改进侧边菜单的用户界面设计。
所以这里的问题是我很难去除每个按钮的边框。
这是我的代码:
<ion-content>
<ion-list no-border>
<button menuClose ion-item class="profileContainer color" text-center (click)="openProfile()">
<img src="{{profileImage}}" style="height: 20%; width: 30%;">
<h1>{{profileName}}</h1><p>{{profileEmail}}</p>
</button>
<button class="otin" menuClose ion-item *ngFor="let p of pages" (click)="openPage(p)">
{{p.title}}
</button>
<button class="otin" menuClose ion-item (click)="logoutUser(event)">
Logout
</button>
</ion-list>
SASS
.profileContainer{
// padding-bottom: 1rem;
// margin: 0 auto;
padding-left: 0;
}
.otin{
background-color: map-get($colors, headerbackground);
}
如何去除按钮上方和下方的白色边框?我尝试了 border-style:none
,但我仍然面临同样的问题。
最佳答案
在您的 SASS 文件中添加以下代码,希望它能移除边框底部。
.otin.item-block .item-inner, .item-md.item-block .item-inner {
border: 0 !important;
}
让我知道它是否适合您。
关于html - 如何去掉侧边菜单按钮的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48771038/
我正在创建自己的网站。使用无序列表制作我自己的标题 + 导航栏。 我遇到的问题是标题没有延伸到浏览器的边缘。唯一可行的方法是在 css“header”中使用。 position:absolute; 我
我是一名优秀的程序员,十分优秀!