Index Of Mujhse Shaadi Karogi -

// random left & top within container boundaries const maxLeft = btnContainer.clientWidth - noBtn.offsetWidth - 10; const maxTop = btnContainer.clientHeight - noBtn.offsetHeight - 5; const randLeft = Math.max(5, Math.floor(Math.random() * maxLeft)); const randTop = Math.max(2, Math.floor(Math.random() * maxTop)); noBtn.style.left = randLeft + 'px'; noBtn.style.top = randTop + 'px'; noBtn.style.margin = '0'; // ensure yes button remains visible & unchanged yesBtn.style.position = 'relative'; yesBtn.style.zIndex = '2'; noBtn.style.zIndex = '10';

<div class="question" id="questionText"> Will you make me the happiest person ever? </div> index of mujhse shaadi karogi

.btn-yes background: #e8436e; color: white; box-shadow: 0 6px 0 #962d48; // random left & top within container boundaries