blob: aa86bc29777f3a4bb1c16dd7809a03ecff099b0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
@font-face {
font-family: test;
src: url(../fonts/TAMLThiruValluvar-Regular.ttf);
}
.test {
font-family: test;
width: -moz-fit-content;
}
.mask {
background: green;
position: relative;
top: -.7em;
height: .7em;
}
</style>
</head>
<body>
<div class="test">
தெபெ
<div class="mask"></div>
</div>
</body>
</html>
|