能量(kcal)
当前位置:   article > 正文

css用div实现table效果_css div table

css div table

最近项目需要实现类似table样式,使用div实现了如上图的效果:

 html代码如下

  1. <div class="table-wrapper">
  2. <div class="table-item">
  3. <span class="table-title">能量(kcal)</span>
  4. <span class="table-content">0.00</span>
  5. </div>
  6. <div class="table-item">
  7. <span class="table-title">能量(kcal)</span>
  8. <span class="table-content">0.00</span>
  9. </div>
  10. <div class="table-item">
  11. <span class="table-title">能量(kcal)</span>
  12. <span class="table-content">0.00</span>
  13. </div>
  14. <div class="table-item">
  15. <span class="table-title">能量(kcal)</span>
  16. <span class="table-content">0.00</span>
  17. </div>
  18. <div class="table-item">
  19. <span class="table-title">能量(kcal)</span>
  20. <span class="table-content">0.00</span>
  21. </div>
  22. </div>

css代码

  1. .table-wrapper
  2. width: 1668px
  3. border-right: 1px solid rgba(0,0,0,0.10)
  4. border-top: 1px solid rgba(0,0,0,0.10)
  5. overflow: hidden
  6. display: table
  7. border-radius: 8px
  8. margin: 8px 0 40px
  9. box-shadow: inset 1px 1px 0 0 rgba(0,0,0,0.10), inset 0 -1px 0 0 rgba(0,0,0,0.10)
  10. text-align: left
  11. .table-item
  12. display: inline-table
  13. margin-top: -1px
  14. /*margin: -1px 0 -1px -1px*/
  15. .table-title
  16. box-sizing: border-box
  17. display: table-cell
  18. padding: 16px 0 15px 24px
  19. width: 278px
  20. height: 100%
  21. font-size: 24px
  22. line-height: 33px
  23. color: rgba(44,49,68,0.60)
  24. background: #EAEBED
  25. box-shadow: inset 1px 1px 0 0 rgba(0,0,0,0.10), inset 0 -1px 0 0 rgba(0,0,0,0.10)
  26. .table-content
  27. box-sizing: border-box
  28. display: table-cell
  29. padding: 16px 0 15px 24px
  30. font-size: 24px
  31. line-height: 33px
  32. color: rgba(44,49,68,0.60)
  33. width: 278px
  34. height: 100%
  35. background: #fff
  36. box-shadow: inset 1px 1px 0 0 rgba(0,0,0,0.10), inset 0 -1px 0 0 rgba(0,0,0,0.10)

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/767467
推荐阅读