html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div><span>Debt Total: 1000000000000000000000000000000000000003030303030303032020</span></div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
div {
background: lightblue;
border-radius: .2em;
color: white;
height: 2em;
width: 8em;
overflow-x: scroll;
display: flex;
align-items: center;
/*justify-content: center;*/
}
span {
flex: 0 0 auto;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run