Posts by Kcireh • 53 points
6 posts
-
0
votes2
answers235
viewsQ: Chess board css
I’m having trouble putting together a chessboard, I left 4x4 just for the sake of aesthetics, someone could help me with the resolution of this? casas = 4 for(i=0;i<casas;i++){…
-
1
votes1
answer70
viewsQ: How to solve the square problem when dragged by the mouse cursor?
When the mouse movement is fast it ends up leaving the square and so the square does not move together with the mouse, I would like to know a solution so that the square always accompanies the mouse…
-
-1
votes1
answer135
viewsA: CSS Cellular Effect
*{ text-align: center; } #geral{ margin: 10px auto; background-color: #ddd; width: 300px; height:…
-
1
votes2
answers198
viewsQ: How to pass saved text to a variable in js?
I know that to copy just use: document.execCommand("copy"); I thought that: document.execCommand("paste"); showed as a result what was copied, but this is not happening. Does anyone know how to play…
javascriptasked Kcireh 53 -
-1
votes2
answers1766
viewsA: Position Absolute within a Hidden overflow
if it’s in the center you want, it can be like this, using the Absolute position. <style> #fora{ width: 500; height: 500; background-color: #34495e; position: relative; } #dentro{ width: 50;…
-
2
votes3
answers304
viewsQ: Where is the error in replace js?
t = "(10px,10px)" t = t.replace(/-|\d+/g,3,5) I wanted it to result in (3px,5px) Where is the error?