Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. #conteneur
  2. {
  3. display: flex;
  4. justify-content: space-between /*espace entre les "blocs"*/
  5. margin-top: 30px;
  6. height: 280px;
  7. }
  8.  
  9. #conteneur2
  10. {
  11. display: flex;
  12. justify-content: space-between;
  13. height: 280px;
  14.  
  15. }
  16.  
  17. #conteneur3
  18. {
  19. display: flex;
  20. justify-content: space-between;
  21. height: 280px;
  22. }
  23.  
  24. .element {
  25. font-family: arial, sans-serif;
  26. border-collapse: collapse;
  27.  
  28. }
  29.  
  30. .element1{
  31. /*border: 1px solid #909090;*/
  32. text-align: left;
  33. padding: 20px;
  34. }
  35.  
  36. img{
  37. display:block;
  38.  
  39. margin-left: auto;
  40. margin-right: auto /*marge à gauche des images */
  41.  
  42. }
  43.  
  44.  
  45. .rectangle{
  46. width:200px;
  47. height:50px;
  48. background:#1EBD9E;
  49. margin-top: 10px;
  50.  
  51. margin-left: auto;
  52. margin-right: auto
  53. }
  54.  
  55. .consulter{
  56. display: inline-block; /*permet de pourvoir même une hauteur et une largeur*/
  57. color: white;
  58. text-align: center;
  59. padding: 9px 25px;/*bouger le mot compétances*/
  60. text-decoration: none;
  61. font-weight: bold;
  62.  
  63. }
  64.  
  65. table.adobe {
  66. margin-top: 6%;
  67. }
  68.  
  69.  
  70. .element:nth-child(2) /* On prend le deuxième bloc élément */
  71. {
  72. background-color: blue;
  73. align-self: flex-start; /* Seul ce bloc sera aligné à la fin */
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement