.2 rounds ..1st round. written technical two js programs like Simple HTML page with three input fields and validation second one is js to find sum of numbers.....2nd round f2f technical...questions about..js hosting..oop oriented javascript..navigation in HTML...display 3 divs in same row.......
Anónimo
3 divs in same row Ans: <div> <div>C1</div> <div>C2</div> <div>C3</div> </div> .Row { display: table; width: 100%; /*Optional*/ table-layout: fixed; /*Optional*/ border-spacing: 10px; /*Optional*/ } .Column { display: table-cell; background-color: red; /*Optional*/ }