1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 09:38:40 +00:00
This commit is contained in:
Lu Wang 2012-09-25 22:32:17 +08:00
parent c4d415dbba
commit 0532ad4274
2 changed files with 10 additions and 1 deletions

View File

@ -8,6 +8,11 @@
right:0; right:0;
overflow:auto; overflow:auto;
background-color:grey; background-color:grey;
/* margin & border-width have to be 0,
* otherwise pdf2htmlEX may not calculate the coordinates correctly
*/
margin:0;
border-width:0;
} }
.d { .d {
position:relative; position:relative;
@ -24,6 +29,11 @@
height:100%; height:100%;
background-color:white; background-color:white;
overflow: hidden; overflow: hidden;
/* margin & border-width have to be 0,
* otherwise pdf2htmlEX may not calculate the coordinates correctly
*/
margin:0;
border-width:0;
} }
.b { .b {
position:absolute; position:absolute;

View File

@ -29,7 +29,6 @@ $css
""" """
<script type="text/javascript"> <script type="text/javascript">
pdf2htmlEX.init('pdf-main'); pdf2htmlEX.init('pdf-main');
alert(pdf2htmlEX);
</script> </script>
<title></title> <title></title>