Anki Bullet Points

Does anyone know how I can centre this anki card so that the bulletpoints will be in the middle?

Try adding this to the Styling section of your notes:

ul { 
 display: inline-block; 
}
ol { 
 display: inline-block; 
}

EDIT: if you often use long sentences in your bullet lists, you could also try something like

ul {
  display: inline-block;
  max-width: 600px;
  overflow-wrap: normal;
}
ol {
  display: inline-block;
  max-width: 600px;
  overflow-wrap: normal;
}
3 Likes

Thank you!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.