Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <h:body>
  2. <div id="wrapper">
  3. <div style="padding:0;border:0;" id="header"/>
  4.  
  5. <div id="content" style="padding:0;border:0;" >
  6. <iframe id="content_iframe" name="center" frameborder="0" width="100%" heigth="100%" scrolling="yes" src="#{dashboardBean.current}"/>
  7. </div>
  8. </div>
  9. <div id="footer" style=" text-align:center;">
  10. <h:outputLink value="http://www.google.com" target="_blank">
  11. <h:graphicImage value="/img/logo.png"/>
  12. </h:outputLink>
  13. </div>
  14. </h:body>
  15.  
  16. #wrapper
  17. {
  18. position: absolute;
  19. left: 0;
  20. top: 0;
  21. right: -33px;
  22. bottom: 0;
  23. padding-right: 15px;
  24. overflow-y: scroll;
  25. z-index:10;
  26. }
  27. #content
  28. {
  29. height:auto !important; /* for modern browsers */
  30. clear:both;
  31. overflow: hidden;
  32. }
  33. #content iframe{
  34. /*height:100%;
  35.  
  36. overflow: scroll;
  37. */
  38. overflow:auto;
  39. min-height: 100%;
  40. position: absolute;
  41. }
  42.  
  43. #footer {
  44. position: absolute;
  45. bottom: 0;
  46. width: 100%;
  47. height: 75px;
  48. z-index:1;
  49. left: 0;
  50. font-size: small;
  51. }
  52.  
  53. .clear {
  54. clear:both;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement