I think the closing bracket is missing. Put all the settings in the .jumbotron class and try. Good luck.
I checked your CSS as follows:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Untitled</title> <meta name="author" content="" /> <style> .jumbotron { position: relative; padding: 40px 0; color: red; text-align: center; text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075); } </style> </head> <body> <p class="jumbotron">This is a test</p> </body> </html>
It seems to work well
Sarah source share