Problem create pdf with class
Hi to All,
I have this problem:
in my page index.htm I have created this class that I used in the body in these two different ways:
<head>
<style type="text/css">
#Opaque
{
background-color: #FFFFFF;
filter:alpha(opacity=50); /*IE Opacity*/
opacity:.5; /*Mozilla (CSS3) Opacity*/
width:96%;
}
</style>
</head>
<body>
....
<table><tr>
<td><div id="Opaque">text1</div></td>
</tr></table>
.....
<table id="Opaque">
<tr>....</tr>
<tr>....</tr>
</table>
</body>
when I make File / Print / Adobe PDF the PC enters in a loop so I must force the exit pushing the button of the PC
(I repeat this operation twice with the same result)
If I put as comments the class "Opaque" in the head, the PDF is generated automatically
Why this behaviour ???
Thanks a lot in advance !!
I have made this and I saw that in this way, that I think it' s not the best, goal is reached:
<head>
<style type="text/css">
#Opaque
{
background-color: #FFFFFF;
filter:alpha(opacity=50); /*IE Opacity*/
opacity:.5; /*Mozilla (CSS3) Opacity*/
width:96%;
}
</style>
</head>
<body>
.....
<table>
<tr>
<td id="Opaque">text1</td>
<td id="Opaque">text2</td>
...
</tr>
</table>
</body>
So I can summarize this:
1. <tr id="Opaque">...</tr> it' s not contemplate
2. <table id="Opaque"> causes block of the PC when I generated the PDF file. I saw the different Preferences in Acrobat 9 without results
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Bookmarks