ボタンの背景色とホバーの状態を変更しようとしていました。この時点までは、インラインでボタンをスタイリングしていたのですが、ボタンのホバー状態を制御できませんでした。私はまた、以下のコードに見られるように、重要なボタンを置いてみましたが、うまくいきませんでした。私は正しいセレクターをターゲットにしていると確信しているので、背景色が変わらない理由はわかりません。ボタンのスタイルとホバーのスタイルを制御できません
<style>
@media(max-width: 800px){
.hidden-el{
display: none;
}
.show-more-content-div{
height: 33px;
margin-bottom: 20px;
text-align: center;
}
a#showMoreContent.button{
background-color: #428071!important;
background-image: -webkit-linear-gradient(top,#428071,#035642);
}
a#showMoreContent.button:hover{
background-color: -webkit-linear-gradient(top,#428071,#035642);
background-image: #428071;
}
}
</style>
<script>
var $title = $('h1.wrapper').first(); //get the title
var $secondToLastRow = $('.row').eq(-2); //get the second to last row
var $firstParagraphAfterTitle = $title.nextAll().find('p').first(); //get the first paragraph after the title
var $start = $firstParagraphAfterTitle.parents('.group.divider'); //determine the start of where to start hiding
var $end = $secondToLastRow.parents('#content_mainholder'); //determine the end of where to start hiding
var arrOfElsToBeHidden = $start.nextUntil($end); //grab everything to be hidden and dump into an array
$(arrOfElsToBeHidden).each(function(){ //loop through and add a hide class to each element to be hidden
$(this).addClass('hidden-el')
});
var showMoreContent = [
'<div class="show-more-content-div">',
'<a href="#" class="button" id="showMoreContent">',
'Show More Content',
'</a>',
'</div>'
].join(""); //created the show more content button
$(showMoreContent).insertAfter($firstParagraphAfterTitle);
$('#showMoreContent').on('hover', function(){
console.log('hovered'); //works
});
</script>
htmlコードはどこですか?私たちに力を与える。私たちがあなたを助けるために必要なものすべてを私たちに与えてください。実際には、javascriptを省略してレンダリングするhtmlコードを提供することができます。次に、要素を検査し、ルールが実際に機能しているかどうかを検証したり、別のルールでより厳密に過認定されたりすることができます。しかし、あなたが自然状態規則に '!important'宣言をしている場合、ホバー状態のために宣言したものは、その規則に'!important'を宣言しない限り、過認定されます。 – UncaughtTypeError
あなたのCSSは単に間違っています – empiric