Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <style> div { transition-property: width; transition-duration: 2s; transition-timing-function: cubic-bezier(.63,.05,.43,1.7); background: orange; color: white; width: 80px; margin: 10px; padding: 10px; } div:hover { width: 80%; } </style> <div>Hover...</div>