How to make ReactPlayer display in 9:16 aspect ratio?

  Kiến thức lập trình

How can I make this video display in 9:16 aspect ratio?

     <ReactPlayer
            className="video"
            autoplay={true}
            ref={playerRef}
            url={e.url}
            playing={isPlaying}
            loop={true}
            muted={muted}
            width={'calc(-92px + 100vw)'}
            height={'720px'}
            onProgress={handlPropgress}
        />

Used padding aspect ratio as well

LEAVE A COMMENT