Hdiahs682h
Honorary Poster
paano po pa liitin yung underline sa css
example po
About us
About us
example po
About us
About us
text-decoration property at ang border-bottom property. /* Gamit ang text-decoration */
a {
text-decoration: underline;
text-decoration-thickness: 1px;
text-decoration-skip-ink: none;
}
text-decoration-thickness upang i-adjust ang lapad ng underline at ang text-decoration-skip-ink upang maiwasan ang pag-alis ng underline sa ilang mga browsers./* Gamit ang border-bottom */
a {
border-bottom: 1px solid black;
}
border-bottom upang magdagdag ng isang border sa ilalim ng teksto, na siyang magiging katulad ng underline.a {
border-bottom: 1px solid black;
text-decoration: none;
}
a:hover {
text-decoration: underline;
text-decoration-thickness: 1px;
text-decoration-skip-ink: none;
}
border-bottom upang magdagdag ng underline sa teksto, at pag pumunta ang mouse sa teksto (:hover), magiging visible ang underline gamit ang text-decoration.