1234567891011121314151617 |
- <!doctype html><style>
- html {
- background: white;
- }
- body {
- background: pink;
- display: flex;
- }
- .orange {
- background: orange;
- display: flex;
- }
- .lime {
- background: lime;
- width: calc(50% - 10px);
- }
- </style><body class=pink><div class=orange><div class=lime>This is a bunch of text
|