In this first example the url('') has quotes, it is not necessary but maybe has some advantages or disadvantages in some browsers.
In this second example the url() has no quotes, it is not necessary either but maybe has some advantages or disadvantages in some browsers.
all that have any knowledge about this, gladly appreciate some feedback on this CSS matter
PHP Code:
divExample {background-image: url('someImage.jpg')}
PHP Code:
divExample {background-image: url(someImage.jpg)}
Comment