コンタクトフォーム7を使用するレビュースタンドのコンタクトフォームを使用したいと思っています。WordPressのコンタクトフォーム7は、私はこのメソッドを使用して、JavaScript、WPプラグイン、またはMODをプラグインファイルに使用しないようにするために、私が取っているルートであるラジオ入力をサポートしています。コンタクトフォーム7(CSS3〜チルダ問題)の純粋なCSSレビュー星
無線入力を星印で表示し、スティッキーマナーで動作させるのは、CSS3の選択~
のおかげで通常はまっすぐですが、Contact Form 7を使用しているため、各入力とラベルの周りにコンテナが通常の作業~
、これは、粘着性の選択を解除します。
私はさらに親を追加しようとしましたが、うまくいけば誰も問題を見つけることができません。
コードをjsFiddle with both working and not working versionsに追加しましたか、ご希望の場合は、以下のコードをご覧ください。ここで
はHTMLです:
<span class="wpcf7-form-control wpcf7-radio">
<span class="wpcf7-list-item first">
<input name="radio-489" type="radio" value="One Star">
<span class="wpcf7-list-item-label">One Star</span>
</span>
<span class="wpcf7-list-item">
<input name="radio-489" type="radio" value="Two Stars">
<span class="wpcf7-list-item-label">Two Stars</span>
</span>
<span class="wpcf7-list-item">
<input name="radio-489" type="radio" value="Three Stars">
<span class="wpcf7-list-item-label">Three Stars</span>
</span>
<span class="wpcf7-list-item">
<input name="radio-489" type="radio" value="Four Stars">
<span class="wpcf7-list-item-label">Four Stars</span>
</span>
<span class="wpcf7-list-item last">
<input checked="checked" name="radio-489" type="radio" value="Five Stars">
<span class="wpcf7-list-item-label">Five Stars</span>
</span>
</span>
そして、ここではそれに行くためのCSSです:
.wpcf7-radio {
overflow: hidden;
display: inline-block;
font-size: 0;
position: relative;
}
.wpcf7-radio input {
float: right;
width: 16px;
height: 16px;
padding: 0;
margin: 0 0 0 -16px;
opacity: 0;
}
.wpcf7-radio:hover .wpcf7-list-item-label:hover,
.wpcf7-radio:hover .wpcf7-list-item-label:hover ~ .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7-radio input:checked ~ .wpcf7-list-item .wpcf7-list-item-label {
background-position: 0 0;
}
.wpcf7-list-item-label,
.wpcf7-radio:hover .wpcf7-list-item-label {
position: relative;
display: right;
float:left;
width: 16px;
height: 16px;
background: url('https://www.bybe.net/files/jsfiddle/stars.png') 0 -16px;
}
のように1つだけが表示されます。これで動作させる方法はありません。ホバー部分は簡単ですが、 ':チェックされた入力は今達成することができません。 – DaniP
FYI 'display:right;'は有効なプロパティと値のペアではありません。 – TylerH
また、DaniP氏のように、CSSでは不可能です。親セレクタはありません。これは、DOMをバックアップして次のセレクタに移動するために必要なものです。 – TylerH