reporting services - SSRS is not making change in Font Size -


i using below html generate ssrs report , giving same default parameter. html view coming perfect per tags not changing font size of given string.

i using inside textbox control.

can 1 suggest achieve ?

my world

my name chris. rici®

enhancedsm

chris™

chris™

rici®

kumarr©

you need change font size , specify in units supported ssrs. 20pt instead of 20.

i took sample of code , updated font size , tested. works.

<p style="font-family:times new roman;font-size:20pt;margin:0 0 0 0;">       <span style="font-family:arial mt std;font-weight:bold;color:#5381ac;">my world</span>  </p>  <p style="font-family:times new roman;font-size:6pt;margin:14 0 14 0;">         <span style="font-family:arial;font-weight:bold;">           <span>my name chris. rici®</span>         </span>  </p> 

per technet article importing html report -->
"font-size: valid rdl size values, in absolute css length units supported. supported units are: in, cm, mm, pt, pc."


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -