由于某种原因,它不起作用。 css存储在style.css中,但是复选框内的样式也没有效果。
我的网站是:http://tinyurl.com/8g8ev2m
...谢谢
p.s我使用wordpress和“PHP Code for posts”插件,虽然我不确定它的问题
.Checkboxstyle {
background-repeat: no-repeat;
border: 2px solid #DDD;
height: 150px!important;
font-size: 150%;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background-image: url(http://doarna.com/wp-content/uploads/2012/09/XCellcom.gif);}
}
<?php
global $wpdb;
$query = "SELECT * FROM wp_organization where type='תקשורת'";
$results = $wpdb->get_results( $query );
foreach ($results as $result) {
$MEATZBEN = $result->NAME;
$MEATZBENID = $result->ID;
echo "<input type='checkbox' name='$MEATZBENID' class='Checkboxstyle'
style='font-size: 100px;' value='$MEATZBEN'>. $MEATZBEN<br />";
}
?>
答案 0 :(得分:5)
假设您的所有标记实际上都是正确的,那么问题在于您将颜色应用于复选框 - 一个不显示文本的元素。您需要将颜色类应用于复选框旁边的任何文本。
<style>
.Checkboxstyle { color: red;}
</style>
<input type="checkbox" name="check1" value="1"> <label class="Checkboxstyle">This is my checkbox</label>