0

我正在构建一个visualforce页面我必须在pageblocksectionitem中创建一个visualforce页面,就像我在我的代码中显示的那样。我对css不太了解。我的代码是

<apex:page standardController="Account">
<apex:pageBlock title="My Content">
<apex:pageBlockSection>
<apex:pageBlockSectionItem>
<apex:pageBlockTable value="{!account.Contacts}" var="item">
<apex:column value="{!item.name}"/>
</apex:pageBlockTable>
</apex:pageBlockSectionItem>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:page>

它显示的表格宽度小于屏幕宽度的一半。我对css不太了解,但是当我设置样式时:{width:250%}然后它的宽度正在增加我必须设置它多少百分比,所以它的宽度将等于apex:pageblocktable 没有被 apex:blockSection 和 apex:pageBlockSectionItem 或任何替代请指导

4

1 回答 1

7

添加到 pageBlockSection 列 =“1”

<apex:pageBlockSection columns="1">
于 2013-06-30T13:09:51.527 回答