fix table
This commit is contained in:
parent
75a0d031ec
commit
2430dc0b65
12
index.md
12
index.md
@ -238,12 +238,12 @@ Un poliedro si dice regolare quando le sue facce sono poligoni regolari congruen
|
|||||||
I poliedri regolari o solidi platonici sono 5: tetraedro, esaedro o cubo, ottaedro, dodecaedro e icosaedro.
|
I poliedri regolari o solidi platonici sono 5: tetraedro, esaedro o cubo, ottaedro, dodecaedro e icosaedro.
|
||||||
|
|
||||||
| Poliedro | facce | vertici | spigoli | superfice | volume |
|
| Poliedro | facce | vertici | spigoli | superfice | volume |
|
||||||
| ------------------------------------------- | ----- | ------- | ------- | ---------------------------------- | -----------------------------|
|
| ----------------------------------------------- | ----- | ------- | ------- | ------------------------------------ | -------------------------------|
|
||||||
| ![tetraedro](images/tetraedro) tetraedro | 4 | 4 | 6 | $s^2 sqrt{3}$ | $frac{1}{12}s^3 sqrt{2}$ |
|
| ![tetraedro](images/tetraedro.jpg) tetraedro | 4 | 4 | 6 | $s^2 \sqrt{3}$ | $\frac{1}{12}s^3\sqrt{2}$ |
|
||||||
| ![esaedro](images/esaedro) esaedro | 6 | 8 | 12 | $6s^2$ | $s^3$ |
|
| ![esaedro](images/esaedro.jpg) esaedro | 6 | 8 | 12 | $6s^2$ | $s^3$ |
|
||||||
| ![ottaedro](images/ottaedro) ottaedro | 8 | 6 | 12 | $2s^2 sqrt{3}$ | $frac{1}{3}s^3 sqrt{2}$ |
|
| ![ottaedro](images/ottaedro.png) ottaedro | 8 | 6 | 12 | $2s^2 \sqrt{3}$ | $\frac{1}{3}s^3\sqrt{2}$ |
|
||||||
| ![dodecaedro](images/dodecaedro) dodecaedro | 12 | 20 | 30 | $15s^2 sqrt{frac{5+2 sqrt{5}}{5}}$ | $s^3 frac{15+7sqrt{15}}{4}$ |
|
| ![dodecaedro](images/dodecaedro.png) dodecaedro | 12 | 20 | 30 | $15s^2 \sqrt{\frac{5+2\sqrt{5}}{5}}$ | $s^3 \frac{15+7\sqrt{15}}{4}$ |
|
||||||
| ![icosaedro](images/icosaedro) icosaedro | 20 | 12 | 30 | $s^2 5sqrt{3}$ | $s^3 frac{5(3+sqrt{5})}{12}$ |
|
| ![icosaedro](images/icosaedro.png) icosaedro | 20 | 12 | 30 | $s^2 5\sqrt{3}$ | $s^3 \frac{5(3+\sqrt{5})}{12}$ |
|
||||||
|
|
||||||
# Solidi di rotazione
|
# Solidi di rotazione
|
||||||
I solidi di rotazione sono figure solide ottenute dalla rotazione completa di un poligono attorno ad una retta.
|
I solidi di rotazione sono figure solide ottenute dalla rotazione completa di un poligono attorno ad una retta.
|
||||||
|
44
main.css
44
main.css
@ -43,6 +43,50 @@ img {
|
|||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td > img {
|
||||||
|
border: none;
|
||||||
|
width: 5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
padding: 0;
|
||||||
|
width: 35em;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr {
|
||||||
|
border-top: 1px solid #cccccc;
|
||||||
|
background-color: white;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr:nth-child(2n) {
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr th {
|
||||||
|
font-weight: bold;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0;
|
||||||
|
padding: 6px 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr td {
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0;
|
||||||
|
padding: 6px 13px
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr th :first-child, table tr td :first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr th :last-child, table tr td :last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
#container {
|
#container {
|
||||||
width: 38em;
|
width: 38em;
|
||||||
margin: 2em;
|
margin: 2em;
|
||||||
|
Loading…
Reference in New Issue
Block a user