| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| button { | |
| background-color: green; | |
| border: none; | |
| padding: 0; | |
| } | |
| .parent { | |
| height: 79px; | |
| overflow-y: scroll; | |
| } | |
| .content { | |
| width: 10px; | |
| height: 80px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <button> | |
| <div class=parent> | |
| <div class=content></div> | |
| </div> | |
| </button> | |
| </body> | |
| </html> |