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;
}

Thank you!