簡體   English   中英

如何在屏幕上居中放置CrystalReportViewer?

[英]How do I center a CrystalReportViewer on the screen?

屏幕上的所有對象都居中,但CrystalReportViewer除外。

CrystalReportViewer是否不能與CSS一起使用?

這是我用於頁面此部分的CSS類:

.reportForm {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 70%;
    background-color: #efeeef;
    clear: both;
    padding-bottom: 35px;
}

該報告一直在屏幕的左側,我只想居中。

同樣,所有其他控件都位於屏幕中央。

該報告也嵌入在段落標簽中。

這是實際的控件:

<form runat="server" class="reportForm">
<p>
<CR:CrystalReportViewer ID="crvSchedules" runat="server" AutoDataBind="True" DisplayStatusbar="False" EnableDatabaseLogonPrompt="False" EnableDrillDown="False" EnableParameterPrompt="False" EnableTheming="False" EnableToolTips="False" HasCrystalLogo="False" HasDrilldownTabs="False" HasDrillUpButton="False" HasGotoPageButton="False" HasPageNavigationButtons="False" HasSearchButton="False" HasToggleGroupTreeButton="False" HasToggleParameterPanelButton="False" HasZoomFactorList="False" Height="1153px" ToolPanelView="None" Width="868px" GroupTreeImagesFolderUrl="" ToolbarImagesFolderUrl="" ToolPanelWidth="200px" HasExportButton="False" HasPrintButton="False" />
</p>
</form>

這是整個CSS文件:

.reportForm {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 70%;
    background-color: #efeeef;
    clear: both;
    padding-bottom: 35px;
}

.site-title {
    color: #c8c8c8;
    font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
    font-size: 2.3em;
}

input[type="submit"],
    input[type="button"],
    button {
        background-color: #d3dce0;
        border: 1px solid #787878;
        cursor: pointer;
        font-size: 0.8em;
        font-weight: 600;
        padding: 6px;
        margin-right: 8px;
        width: auto;
    }

我想不出什么問題是這個,所以我只是把報告中的一個表,並居中它。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM