4

のカスタム ブロックでbookdownリンクのスタイルを設定しようとしています。カスタム ブロック タイプは「rmdcomment」と呼ばれ、style.cssファイルに次を追加しました。

.rmdcomment {
  padding: 1em 1em 1em 4em;
  margin-top: 30px;
  margin-bottom: 30px;
  background: #1f9ac9;
  position:relative;
  color: white;
}

.rmdcomment:before {
  content: "\f075";
  font-family: FontAwesome;
  left:10px;
  position:absolute;
  top:0px;
  font-size: 45px;
  color: white;
}

上記は正しく表示されます。

リンクのスタイルを設定する(失敗した)試みで、次のものも追加しました。

.rmdcomment a:link {text-decoration: underline; font-weight:bold; color:white;}
.rmdcomment a:visited {text-decoration: underline; font-weight:bold; color:white;}
.rmdcomment a:hover {text-decoration: underline; font-weight:bold; color:white;}
4

2 に答える 2

4

これはあなたが話しているセクションだと思います。

ここに画像の説明を入力

!important を追加して、基本的に以前のスタイルを上書きします。

.rmdcomment a:link {text-decoration: underline !important; font-weight:bold !important; color:white !important;}

于 2017-01-05T21:59:41.707 に答える