반응형
Q>
상대 위치 설정(relative positioning)을 이용해 다음과 같은 수식을 표시해 보자.
A>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#sigma {
position: relative;
font-size: 50px;
left: 50px;
top: 50px;
}
#n {
position: relative;
font-weight: bold;
font-size: 20px;
left: 14px;
top: 5px;
}
#i1 {
position: relative;
font-weight: bold;
font-size: 20px;
left: -3px;
top: 85px;
}
#x {
position: relative;
font-weight: bold;
font-size: 25px;
left: -3px;
top: 50px;
}
#i2 {
position: relative;
font-weight: bold;
font-size: 25px;
left: -8px;
top: 55px;
}
</style>
</head>
<body>
<span id="sigma">∑</span>
<span id="n">𝔫</span>
<span id="i1">𝒾=1</span>
<span id="x">X</span>
<span id="i2">i</span>
</body>
</html>
R>
|
반응형
'Python_WEB > HTML' 카테고리의 다른 글
[Ch6]CSS3 레이아웃과 애니메이션 연습문제 5 (0) | 2020.12.06 |
---|---|
[Ch6]CSS3 레이아웃과 애니메이션 연습문제 4 (0) | 2020.12.02 |
[Ch6]CSS3 레이아웃과 애니메이션 연습문제 2 (0) | 2020.11.23 |
[Ch6]CSS3 레이아웃과 애니메이션 연습문제 1 (0) | 2020.11.23 |
[Ch5]CSS 박스 모델과 응용 연습문제 4 (0) | 2020.11.15 |