0

我正在尝试减少底部和顶部黑暗区域可用的边框空间量

所以 :

在此处输入图像描述

应该 :

在此处输入图像描述

我尝试将 padding-bottom: 0px !important 添加到 pds-vote。pds-vote 是我试图减少填充但似乎没有任何效果的投票元素。

这是小提琴:http: //jsfiddle.net/25LjE/79/

小提琴背后的代码:

.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}

小提琴背后的HTML:

<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

1

您应该将此添加到您的 css Ofc 中,您可以将其设置为所需的填充

 .pds-answer{
    padding-bottom:5px !Important;
}
.pds-box-outer{
  padding-bottom:5px !Important;
}

但是你应该尽量避免使用这么重要的东西。

解释为什么

于 2012-07-11T09:02:44.767 回答
0

试试这个:

#PDI_container6352993 .pds-box .pds-box-outer {
    padding-bottom: 6px;
}

这是一个结果。

于 2012-07-11T08:56:25.257 回答