Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

156
Vistas
I am trying to display the detail icon at far right by using webkit-details-marker but not getting the desired output

::-webkit-details-marker {
  float: right;
}
<div class="ques-block">
  <details>
    <summary class="question">How important is accordian?</summary>
    <p class="answer">
      Accordian is type of question and answer forum in which qestion is in the question block and answer is in the answer block.
    </p>
</div>

In the CSS section the ::-webkit-details-marker{} is not working, and even if it is working the output is not visible; what am I doing wrong?

over 4 years ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

You can simulate it using direction

.question {
  direction: rtl;
  text-align: left;
}

.question>div {
  display: inline-block;
  direction: ltr;
}
<div class="ques-block">
  <details>
    <summary class="question">
      <div>How important is accordian?</div>
    </summary>
    <p class="answer">
      Accordian is type of question and answer forum in which qestion is in the question block and answer is in the answer block.
    </p>
  </details>
</div>

over 4 years ago · Santiago Trujillo Denunciar

0

Not sure how to override marker style, but I can suggest a workaround.

details summary {
  position: relative;
}

details summary::after {
  content: "▶";
  position: absolute;
  margin-left: 20px;
}

details[open] summary::after {
  content: "▼";
}

summary {
  list-style: none
}

summary::-webkit-details-marker {
  display: none;
}
<div class="ques-block">
  <details>
    <summary class="question">How important is accordian?</summary>
    <p class="answer">
      Accordian is type of question and answer forum in which qestion is in the question block and answer is in the answer block.
    </p>
  </details>
</div>

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda