Skip to main content
Participating Frequently
June 5, 2015
Answered

rotate header text issue in cfm to pdf

  • June 5, 2015
  • 1 reply
  • 999 views

Hi all,

I'm getting an issue with rotate header text in pdf

im using this css -webkit-transform: rotate(-90deg); code for  rotate header text . it is working fine in cfm page but not working when convert it to pdf using cfdocument tag

please  help to solve this

thanks in advance

Bibin

This topic has been closed for replies.
Correct answer haxtbh

The cfdocument tag supports the following CSS styles:

background

background-attachment

background-color

background-image

background-position

background-repeat

border

border-bottom

border-bottom-color

border-bottom-style (solid border only)

border-bottom-width

border-color

border-left

border-left-color

border-left-style (solid border only)

border-left-width

border-right

border-right-color

border-right-style (solid border only)

border-right-width

border-spacing

border-style (solid border only)

border-top

border-top-color

border-top-style (solid border only)

border-top-width

border-width

bottom

clear

clip

color

content (strings, counters only)

counter-increment

counter-reset

cursor

display

float

font

font-family

font-size

font-style

font-weight

height

left

letter-spacing

line-height

list-style-type

margin

margin-bottom

margin-left

margin-right

margin-top

outline

outline-color

outline-style (solid, dotted, dashed only)

outline-width

padding

padding-bottom

padding-left

padding-right

padding-top

page-break-after

page-break-before

page-break-inside

position

right

text-align (left, right, and center)

text-decoration

text-indent

top

unicode-bidi

vertical-align

visibility

white space (normal, nowrap only)

width

z-index

cfdocument - ColdFusion, English documentation - Adobe Learning Resources

Remember prefixes (-webkit) on css are relative to the browsers as well. This wouldn't apply to Internet Explorer either.

1 reply

haxtbhCorrect answer
Inspiring
June 5, 2015

The cfdocument tag supports the following CSS styles:

background

background-attachment

background-color

background-image

background-position

background-repeat

border

border-bottom

border-bottom-color

border-bottom-style (solid border only)

border-bottom-width

border-color

border-left

border-left-color

border-left-style (solid border only)

border-left-width

border-right

border-right-color

border-right-style (solid border only)

border-right-width

border-spacing

border-style (solid border only)

border-top

border-top-color

border-top-style (solid border only)

border-top-width

border-width

bottom

clear

clip

color

content (strings, counters only)

counter-increment

counter-reset

cursor

display

float

font

font-family

font-size

font-style

font-weight

height

left

letter-spacing

line-height

list-style-type

margin

margin-bottom

margin-left

margin-right

margin-top

outline

outline-color

outline-style (solid, dotted, dashed only)

outline-width

padding

padding-bottom

padding-left

padding-right

padding-top

page-break-after

page-break-before

page-break-inside

position

right

text-align (left, right, and center)

text-decoration

text-indent

top

unicode-bidi

vertical-align

visibility

white space (normal, nowrap only)

width

z-index

cfdocument - ColdFusion, English documentation - Adobe Learning Resources

Remember prefixes (-webkit) on css are relative to the browsers as well. This wouldn't apply to Internet Explorer either.

Bibin-_V-Author
Participating Frequently
June 7, 2015

thx for info