skip to Main Content

When i scroll down, the info in my <li> element appears on top of my navbar. Can some help me with it – CPanel

*{ padding: 0; margin: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, sans-serif; } ::selection{ background-color: #333; color: rgb(255, 230, 0); } ::-moz-selection{ background-color: #333; color: rgb(255, 255, 255); } ::-webkit-scrollbar{ width: 10px; } ::-webkit-scrollbar-thumb{ background-color: rgb(255, 198, 198); -webkit-border-radius: 10px; }…

VIEW QUESTION

Problem in root route in laravel 8 Using illuminate – Apache

This is my first time asking questions in StackOverflow so sorry for the mistakes. I have a problem with laravel routes. <?php use IlluminateSupportFacadesRoute; //start :: login Route::group(['namespace' => 'auth'], function () { Route::get('/', 'AuthController@index')->name('index'); Route::get('/showResult', 'AuthController@Result')->name('Result'); Route::post('/showResultds', 'AuthController@showResult')->name('showResult'); Route::post('/dologin',…

VIEW QUESTION
Back To Top
Search