html - CSS background with ) in its name? -


I want to display a div with a background image called "something like this": "image_ (1) _125x192.jpg ". It does not display, possibly due to ")" Is there no way to do this without changing the name of the image?

  #div {background-image: url (image_ (1) _125x192.jpg); Height: 192 px; Width: 125px; }  

Thanks!

Use quotes

  background-image: url (" Image_ (1) _125x192.jpg ");  

W3 reference:


Comments

Popular posts from this blog

oracle - The fastest way to check if some records in a database table? -

php - multilevel menu with multilevel array -

jQuery UI: Datepicker month format -