垂直文本显示在表TD中?

PHP*_*ser 1 html css

如何在PHP中使用Vertical文本?

我需要在表Td文本中以垂直样式显示文本

它应该打印垂直还是我需要它旋转?

Sar*_*raz 5

CSS:

对于FF 3.5或Safari/Webkit 3.1,请查看:-moz-transform(和-webkit-transform).IE有一个Matrix过滤器(v5.5 +).

.rot-neg-90 {
  /* rotate -90 deg, not sure if a negative number is supported so I used 270 */
  -moz-transform: rotate(270deg);
  -moz-transform-origin: 50% 50%;
  -webkit-transform: rotate(270deg);
  -webkit-transform-origin: 50% 50%;
  /* IE support too convoluted for the time I've got on my hands... */
}
Run Code Online (Sandbox Code Playgroud)

PHP: (由于OP已标记的PHP)

但是,如果您想在图像上使用垂直文本,请尝试:

header ("Content-type: image/png"); 

// imagecreate (x width, y width)
$img_handle = @imagecreatetruecolor (15, 220) or die ("Cannot Create image"); 

// ImageColorAllocate (image, red, green, blue)
$back_color = ImageColorAllocate ($img_handle, 0, 0, 0); 
$txt_color = ImageColorAllocate ($img_handle, 255, 255, 255); 
ImageStringUp ($img_handle, 2, 1, 215, $_GET['text'], $txt_color); 
ImagePng ($img_handle); 
ImageDestroy($img_handle);
Run Code Online (Sandbox Code Playgroud)