Posts by Eduardo Mendonça • 126 points
7 posts
-
3
votes1
answer61
viewsA: How to create this effect in the image?
You can use the property clip-path. <!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8"> <title> </title> <style> .teste{ background:…
-
1
votes3
answers324
viewsQ: Check which p has no text
How to verify which p has no text value? I have the following HTML code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title>…
-
0
votes1
answer35
viewsQ: Row and column javascript/Jquery
I need a pure or jquery script that runs a row and column structure. Example, if the user type 7 I have to print the following structure: x xx xxx xxxx xxxxx xxxxxx xxxxxxx I tried to use for but…
-
1
votes1
answer38
viewsQ: Clip property
I’m using the property clip in a tag to cut at the bottom of it, however this image will be dynamic, the width size is fixed but the height size will be dynamomic. So if I have an image with height:…
-
2
votes2
answers214
viewsQ: Set dynamic height for div with javascript
I’d like a script that takes my div with the class master and define height: 100% according to screen size. html: <!DOCTYPE html> <html lang="pt-br"> <head> <meta…
-
2
votes2
answers3064
viewsQ: remove radio checked input
How can I remove checked input radio if a div has the click effect? <!DOCTYPE html> <html> <body> <form action=""> <input type="radio" name="gender" value="male">…
-
0
votes2
answers88
viewsQ: How to make radio effect in div
I need to do an equal effect of input radio but in div, because when clicking on the first div add a class, if clicking on another div also add a class but have to remove from the div that received…