How to move a table in the middle of the note?

You can remove the callout stylings, and make the centering optional

/* Callout without styling */
.callout[data-callout="blank"] {
    margin: unset;
    margin-left: auto;
    margin-right: auto;
    border: unset;
    border-radius: unset;
    padding: unset;
    margin-block: 1em;
    background: unset;
    mix-blend-mode: normal;
	
	& > .callout-title {
		display: none; 
		color: #9999ff;
	}
	
	.callout-icon {
	display: none;
	}
}

/* Metadata for centering tables */
.callout[data-callout-metadata*="center-table"] table {
    margin-left: auto;
    margin-right: auto;
	margin: auto;
}

Use like this;

> [!blank|center-table]
> 
> | a   |  b  |
> | --- | --- |
> | c   | d   |
> |     |     |
> 

If it doesn’t work check your theme

2 Likes