Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

CSS to increase font size in WordPress

For paragraph

p {
font-size:16px;
}

For code block,

code {
font-size:16px;
}

For preformatted,

pre {
font-size:16px;
}

Syntax to use CSS for font size in block,

blockTag {
font-size:16px;
}