- Jun 6, 2020
- 11,517
- 4,383
سورس کد Scope Chat - html
HTML , CSS <!DOCTYPE html> <html lang="fa" > <head> <meta charset="UTF-8"> <title>chat Scope</title> <style> body { background: #368dda; margin-top:15%; margin-left:35%; } .scope { position: relative; font-family: sans-serif; font-size: 18px; line-height: 24px; width: 300px; background: #fff; border-radius: 40px; padding: 24px; text-align: center; color: #000; } .scope-bl:before { content: ""; width: 0px; height: 0px; position: absolute; border-left: 24px solid #fff; border-right: 12px solid transparent; border-top: 12px solid #fff; border-bottom: 20px solid transparent; left: 32px; bottom: -24px; } </style> </head> <body> <div class="scope scope-bl"> Test </div> </body> </html> |