Update:
I got it working by setting initial width and height to big numbers. It didn't work because resizing done via win.resizeTo(screen.availWidth, screen.availHeight); wasn't affecting the clickable area apparently
- nw.js v0.14.3 x64
- Windows 10 x64 Home, Build 10586
I can click on divs when they don't float but clicks go through them when they float
Style: div.right {width: 200px; float: right;}
Same issue with .parent {position:relative;}.child{position:absolute;right:0;} instead of float:right
Clicking at where-they-would-be-without-float doesn't work either (if it's any relevant)

-- Extra info --
Ran with nw . --disable-gpu --force-cpu-draw
window
"frame": false,
"toolbar": false,
"transparent": true,
"resizable": false
body style
body {
background-color:rgba(0,0,0,0);
}
Please tell me if I missed anything I'll update
Update:
I got it working by setting initial width and height to big numbers. It didn't work because resizing done via
win.resizeTo(screen.availWidth, screen.availHeight);wasn't affecting the clickable area apparentlyI can click on divs when they don't float but clicks go through them when they float
Style:
div.right {width: 200px; float: right;}Same issue with
.parent {position:relative;}.child{position:absolute;right:0;}instead of float:rightClicking at where-they-would-be-without-float doesn't work either (if it's any relevant)
-- Extra info --
Ran with
nw . --disable-gpu --force-cpu-drawwindow
body style
Please tell me if I missed anything I'll update