“Pusat video secara horizontal” Kode Jawaban

Pusat video secara horizontal

/*option 1:this makes the video responsive*/
.videoDiv
{
    width: 70%; /*or whatever % you prefer*/
    margin: 0 auto;
    display: block;
}

/* option 2* does not make the video responsive*/

.videoDiv{
  margin:0 auto;
  display: block;
}  
Witty Wildebeest

Pusat video secara horizontal

<div class="videoDiv">
  <video width="100%" controls>
    <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
    <source src="https://www.w3schools.com/html/mov_bbb.ogg" type="video/ogg">
  Your browser does not support the video tag.
  </video>
</div>
Witty Wildebeest

Jawaban yang mirip dengan “Pusat video secara horizontal”

Pertanyaan yang mirip dengan “Pusat video secara horizontal”

Lebih banyak jawaban terkait untuk “Pusat video secara horizontal” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya