I published 2 stream in mode live broadcast rtmp. The layout is of type custom. Here is the stylesheet:
stream.block1{
position : absolute;
top : 0;
left : 0;
height : 100%;
width : 50%;
z-index : 1;
}
stream.block2{
position : absolute;
top : 0;
right : 0;
height : 100%;
width : 50%;
z-index : 1;
}
But when I watch the live on youtube both blocks do not take up all the space of the screen: https://www.noelshack.com/2018-30-2-1532386693-capture-ecran-test-event-youtube.png
The css properties of each block specify a height of 100% and a top right or left at 0.
An update of the resolution at 1280x720 allows a larger dimension of the blocks but it still does not take up all the space.
How to make the blocks take up all the space?