kytschBASIC

Put down that phone!
Please view me on real computer.

HEIGHTPERCENT
PERCENTAGE

Set a height as a percentage.

Example

PALETTE ,"screen"

	BACKGROUND 0,0,0

	COLOR 255,255,255

	WIDTHPERCENT 50

	HEIGHTPERCENT 30

END PALETTE

SCREEN "screen"

	PRINT "I'm a screen"

END SCREEN

Output

<style>#screen{
background-color: rgba(0,0,0,1) !important;
color: rgba(255,255,255,1) !important;
width: 50% !important;
height: 30% !important;
}</style>
<style>
#screen {background-color: rgba(255,255,255,1);color:rgb(0,0,0);height: 100vh;}
</style>
<div id="screen">
<span id="kb-span-27430789271646850">I'm a screen</span>
</div>

Example

I'm a screen

See also