Possible to format `code` within a table?

What I’m trying to do

I try to format text surrounded by `` within a Markdown table

Things I have tried

I found a CSS snipped that works fine outside a table.

/* Inline code ( like this ) in Preview */
.markdown-preview-view code {
background-color: purple !important;
padding: 2px 4px;
border-radius: 4px;
}

/* Inline code in Live Preview / Editor */
.cm-s-obsidian span.cm-inline-code {
background-color: purple !important;
padding: 2px 4px;
border-radius: 4px;
}

I don’t know which selector I should add to have it working also within a table.

Thanks for any help in this matter