问题在这里http://rohitarondekar.com/articles(以及网站的每个页面上)。当您在Chrome中加载页面时,链接会从紫色变为预期的颜色。如果看不到问题,请尝试进行强制刷新。我不知道这是我的CSS的错误还是问题。我提供了相关CSS的一小段内容,如下所示:
/*
* Reset
*/
* {
margin: 0;
padding: 0;
}
a {
color: #999;
text-decoration: none;
-webkit-transition-duration: 500ms;
-webkit-transition-property: background, color;
-webkit-transition-timing-function: ease;
-moz-transition-duration: 500ms;
-moz-transition-property: background, color;
-moz-transition-timing-function: ease;
-o-transition-duration: 500ms;
-o-transition-property: background, color;
-o-transition-timing-function: ease;
transition-duration: 500ms;
transition-property: background, color;
transition-timing-function: ease;
}
a:hover {
color: #0077cc;
padding-bottom: 2px;
border-bottom: solid 1px #ccc;
}
h1 a {
font-family: Georgia, "Nimbus Roman No9 L", Serif;
color: #6A6A6A;
}
h1 a:hover {
color: #0077cc;
border-bottom: 0; …Run Code Online (Sandbox Code Playgroud) 我想从shell脚本打开html文件.我知道Ubuntu有一个命令x-www-browser,它将打开系统上的默认浏览器.我还通过一些谷歌搜索发现该命令是debian系统的一部分.我想知道这个命令是否适用于非基于debian的发行版.如果不存在通过命令行在linux OS上的默认浏览器中打开html文件的标准方法?请注意,我正在使用Bash.