https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c342c1ccba3e21cadb933bc2c648b37af18c26c8 authored by Mustaq Ahmed on 06 April 2018, 14:14:32 UTC
Make BlueTooth/USB requestDevice non-consuming.
Tip revision: c342c1c
flex-flexitem-percentage-prescation.html
<!DOCTYPE html>
<html>
<head>
	<title>flex item size prescation</title>
	<link rel="author" title="shaofeic" href="mailto:csf178@gmail.com" />
	<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-items">
	<link rel="match" href="reference/flex-flexitem-percentage-prescation-ref.html">
	<meta name="flags" content="" />
	<meta name="assert" content="no blue color could be seen." />
    <style type="text/css">
    #test
    {
        background: blue;
        display: flex;
        height:300px;
        width:101px;
    }
    p {
        flex:1;
        background:red;
        flex-direction:row;
        margin:0 0 0 0;
    }
    </style>
</head>
<body>
	<div id="test">
        <p style="background:green;">damer</p>
        <p>damer</p>
    </div>
</body>
</html>

back to top