How can we create double dotted underline in CSS ?
I use border-bottom property.
border-bottom: 1px dotted #oof
But only single dotted underline appears. How can we create double underline ? Is it possible ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to use at least two HTML elements to achieve this:
Both
.outerand.innershould have the same dotted bottom border, but.outershould have a few pixels ofpadding-bottomas well.See an example here.