• 2022-06-03
    In css, to center the box vertically with the center of the page, fill in the blank space (). .box{ position: ; top:0; bottom:0; left:0; right:0; margin: ; width: 300px; height: 200px; border:2px solid #ccc; }
    A: absolute 50%
    B: absolute auto
    C: relative
    50%
    D: relative auto
  • 举一反三