We Recommend

An Introduction to R An Introduction to R
This tutorial manual provides a comprehensive introduction to R, a software package for statistical computing and graphics. R supports a wide range of statistical techniques, and is easily extensible via user-defined functions written in its own language, or using dynamically loaded modules written in C, C++ or Fortran. One of R's strengths is the ease with which well-designed publication-quality plots can be produced.


Posted By

LukeLarsen on 02/27/08


Tagged

textmate three-cols


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

adix


css - three col


Published in: Other 


  1. #container{
  2. background-color:#0ff;
  3. float:left;
  4. width:500px;
  5. border-left:150px solid #0f0; »
  6. /* The width and color of the left rail */
  7. border-right:200px solid #f00; »
  8. /* The width and color of the right rail */
  9. }
  10. #leftRail{
  11. float:left;
  12. width:150px;
  13. margin-left:-150px;
  14. position:relative;
  15. }
  16. #center{
  17. float:left;
  18. width:500px;
  19. margin-right:-500px;
  20. }
  21. #rightRail{
  22. float:right;
  23. width:200px;
  24. margin-right:-200px;
  25. position:relative;
  26. }

Report this snippet 

You need to login to post a comment.