MediaWiki:Common.css
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5。
/* 这里放置的CSS将应用于所有皮肤 */ a{ position: relative; cursor: pointer; text-decoration: none; /* 去除默认的下划线 */ display: inline-block; padding-bottom: 2px; /* 为下划线留出空间 */ transition: all 1s ease-in-out; /* 过渡效果 */ } a::after{ content: ''; position: absolute; left: 50%; right: 50%; bottom: 0; height: 1px; /* 下划线高度 */ background: #D3D3D3; /* 灰白色 */ transition: all 1s ease-in-out; /* 过渡效果 */ } a:hover::after{ left: 0; right: 0; }