Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. #container {
  2. width: 800px;
  3. }
  4.  
  5. #fixed {
  6. position: fixed;
  7. width: 100%;
  8. }
  9.  
  10. <div id="container">
  11. <div id="fixed">Sitename</div>
  12. <p>
  13. blaat
  14. </p>
  15. </div>
  16.  
  17. #container {
  18. width: 400px;
  19. border: 1px solid red;
  20. }
  21.  
  22. #fixed {
  23. position: fixed;
  24. width: inherit;
  25. border: 1px solid green;
  26. }
  27.  
  28. <div class="head">
  29.  
  30. <div id="fx">123</div>
  31.  
  32. </div>
  33.  
  34. <div class="head">
  35. <div class="area_for_fix">
  36. <div id="fx">123</div>
  37. </div>
  38. </div>
  39.  
  40. .head{
  41. min-width:960px;
  42. width:960px;
  43. nax-width:1400px;
  44. height:300px;
  45. border: 1px solid #000;
  46. **position:relative;**
  47. margin:0 auto;
  48. margin-top:50px;
  49. padding:20px;
  50. text-align:right;
  51. height:1500px;
  52. }
  53.  
  54. .area_for_fix{
  55.  
  56. **position:absolute;**
  57. right:0;
  58. width:150px;
  59. height:200px;
  60. background-color:red;
  61. }
  62.  
  63.  
  64. #fx{
  65. width:150px;
  66. height:75px;
  67. background-color:#ccc;
  68. **position:fixed;**
  69.  
  70.  
  71.  
  72.  
  73. }
  74.  
  75. -webkit-transform: translateZ(0);
  76.  
  77. var new_width = $('#container').width();
  78. $('#fixed').width(new_width);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement