The main view area is occupied by the video. It usually sets to fit the available device screen when no size is specified.
The following CSS class selector controls the appearance of the viewing area:
.s7videoviewer
width |
Viewer width. |
height |
Viewer height. |
background-color |
Background color in hexadecimal format. |
To set up a video viewer with a white background (#FFFFFF) and make its size 512 x 288 pixels:
.s7videoviewer {
background-color: #FFFFFF;
width: 512px;
height: 288px;
}