CSS changes for edit mode - Space between line

https://forum.obsidian.md/t/unable-to-center-h3-in-edit-mode-via-css/29951
The answer given by @anon12638239 may help. And I’ve tried part of your code.

.HyperMD-header.HyperMD-header-1 {
  line-height: 2.5;   /* It works */
}
.HyperMD-header.HyperMD-header-1 { 
  display: block;    /* All these do not work */
  padding-top: 8px; 
  padding-bottom: 8px; 
  margin-block-start: 20px;
  margin-block-end: 20px;
  margin-inline-start: 20px;
  margin-inline-end: 20px;
}
1 Like