text/css
CSS stylesheet
Text
.css
MIME Type
Media Type
text/css
File Extension
.css
Usage Examples
HTTP Response Header
Content-Type: text/css
HTML Link Tag
<link rel="stylesheet" type="text/css" href="style.css">
JavaScript Fetch API
fetch('/api/data', {
headers: {
'Content-Type': 'text/css'
}
})Express.js (Node.js)
res.setHeader('Content-Type', 'text/css');
res.send(data);When to Use This MIME Type
Text MIME types are used for human-readable content. Always use the correct MIME type to ensure proper rendering and character encoding.