Posts by user38561 • 111 points
5 posts
-
1
votes1
answer24
viewsA: Javascript pass more than one parameter
I think you want this 1 == (a.redirect && a.firstparam && a.secondparam) ? [...], being completed as follows: 1 == (a.redirect && a.firstparam && a.secondparam) ?…
javascriptanswered user38561 111 -
1
votes1
answer86
viewsA: Utlizar HTML tags in Markdown
The intention at the origin of Markdown is to be easy to read and write, prevailing this ease of reading, and is influenced by emails in text format. Then use the Markdown created to convert to…
-
1
votes2
answers151
viewsA: How to optimize images?
Image An alternative would be the picture, via terminal using the image-cli or if you prefer via imagemin-app, but the latter does not work as well (by the tested version). There is also the…
-
1
votes2
answers1417
viewsA: Why doesn’t the background-color appear?
It does not disappear, what happens is that it is without a reference to height when it is at all. You give 20% of nothing in height:20%, for the parent element .container does not have a defined…
-
1
votes3
answers425
viewsA: Format CSS with PHP
In this case it is not necessary to put the url path with quotes can simply stay url(../img/banner-product.png), getting: print_r("<div value='6_1' style='background-image:…