我想在Web窗体中旋转gridview以将其打印清楚,因为它不适合页面的纵向。 Gridview正在追踪server {
listen 8080;
listen [::]:8080;
root /var/www/fujiorganics.com/html;
index index.php index.html index.htm;
server_name 127.0.0.2;
location / {
try_files $uri $uri/ =404;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
# With php7.0-cgi alone:
#fastcgi_pass 127.0.0.1:9000;
# With php7.0-fpm:
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
但是当我旋转它时,由于一些奇怪的原因,它会削减50%的电网
如何旋转网格并使其在页面上100%适合?
我希望有这样的事情:
但我有这种情况
我要旋转的CSS:
page-break-before:always;
我的代码:
.gridCss {
width: 100%;
-ms-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-o-transform: rotate(90deg);
font-size:8px;
word-wrap: break-word;
height:100%;
}
答案 0 :(得分:0)
我使用了支持export and printing的DevExpress数据网格扩展选项,包括文档page orientation。如果您不需要网格,可以使用他们的reporting tool打印表格数据。