【发布时间】:2022-01-17 21:07:41
【问题描述】:
我目前正在研究此导航菜单的样式。
它在浏览器上运行良好。至于手机,有这种奇怪的蓝色点击效果。
如何删除它?
屏幕截图:
点击之前https://imgur.com/Ovu5v7P
点击https://imgur.com/lOwpicT
这是我的代码:
React
import { Link, NavLink } from "react-router-dom";//these are just <a>
<div className="drawerNav" onClick={() => setDrawerOpen(false)}>
<a className="closebtn">Close</a>
<div className="drawerNav-content">
<Link to="/">Home</Link>
<Link to="/about">About</Link>
<Link to="/post">Post</Link>
<a onClick={handleAuth}>{signed ? "Logout" : "Login"}</a>
</div>
</div>
CSS(styled components)
.drawerNav {
a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #fff;
display: block;
}
}
.drawerNav-content {
position: relative;
top: 25%;
width: 100%;
text-align: center;
margin-top: 30px;
}
【问题讨论】:
-
jsfiddle.net/t4ykshst/3 这是stackoverflow.com/questions/45049873/… 上提到的jsFiddle。请看看它是否能解决您的问题
标签: javascript css reactjs styled-components