0

フィドルでは、CSSクラスの高さを減らそうとしています:

http://jsfiddle.net/25LjE/76/

クラス pds-vote の高さを減らしています:

.pds-vote {
background-color:#424242;
    height:20px !important;
}

しかし、高さは均一に減少していません。投票ボタンの下の高さがその上の高さよりも小さい場合、投票ボタンの上下に同じ量の境界線ができるように、高さを均一に減らすことはできますか?

コードビハインドフィドル:

.pds-question-top {
font-size:10pt !important;
padding-top:1px !important;
padding-bottom:1px !important;
margin-top:1px !important;
margin-bottom:1px !important;
}

.pds-pd-link, .pds-comments {
display:none !important;
}

.pds-box {
width:220px !important;
}

.pds-input-label {
width:85% !important;
}

.PDS_Poll {
margin-bottom:15px;
}

.pds-answer-span {
color:#00f;
}

.pds-vote {
background-color:#424242;
}

.pds-answer-text {
color:#00f;
padding-top:1px !important;
padding-bottom:1px !important;
margin-top:1px !important;
margin-bottom:1px !important;
}

.pds-answer-feedback {
padding-top:1px !important;
padding-bottom:1px !important;
margin-top:1px !important;
margin-bottom:1px !important;
}

.pds-votebutton-outer {
text-align:center;
}

.pds-answer-group {
padding-top:1px !important;
padding-bottom:1px !important;
margin-top:1px !important;
margin-bottom:1px !important;
height:auto;
overflow:hidden;
}

.pds-input-label,.pds-answer-input {
float:left;
}

.pds-view-results,.pds-links {
color:#FFF !important;
padding-top:1px !important;
padding-bottom:1px !important;
margin-top:1px !important;
margin-bottom:1px !important;
}

.pds-comments,.pds-return-poll {
color:#FFF !important;
}

.pds-links {
    display: inline !important;
}
.pds-pd-link {
display: none !important;
}
.pds-box {
    width: 220px !important;
}
.pds-input-label{
    width: auto! important;
}
.PDS_Poll{
    margin-bottom:15px;
}

.pds-question-top {padding:0 !important}

<script type="text/javascript" charset="utf-8" src="http://static.polldaddy.com/p/6352993.js"></script>
<noscript><a href="http://polldaddy.com/poll/6352993/">This is very long test question to test how polldaddy handles questions that exceed that normal length............ yes a very long question indeed..............</a></noscript>

$(document).ready(function() {

    $('.pds-question-inner').prepend('<span style="color:red;font-weight:bold;font-size: 15px;float:left">Header</span>');
});
4

2 に答える 2

0

投票ボタンの高さは20ピクセルを超えているため、ボタンは「中央の」コンテナからはみ出します。

の高さを設定する代わりに、その.pds-voteコンテナのパディングを減らします。

.pds-vote {
    background-color: #424242;
}
#PDI_container6352993 .pds-vote {
    padding: 4px 0px;
}
于 2012-07-10T14:41:16.017 に答える
0

line-heightと同じ値に設定し、heightパディングを削除します。そうすれば、コンテンツは垂直方向に中央揃えになり、高さが均一に分散されます: http://jsfiddle.net/25LjE/77/

.pds-vote {
    background-color: #424242;
    height: 40px !important;  /* 20px does not fit the contents */
    line-height: 40px !important;
    padding: 0 !important;
}
于 2012-07-10T14:39:48.857 に答える