Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8798411
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T00:05:32+00:00 2026-06-14T00:05:32+00:00

How can I get a curved TextBox like the Facebook Status TextBox with html

  • 0

How can I get a curved TextBox like the Facebook Status TextBox with html and css only?

Notice The Curve On TextBox

Can Anybody illustrate me how to do that ??

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T00:05:33+00:00Added an answer on June 14, 2026 at 12:05 am

    My Cross-Browser, CSS-only version of the Facebook-style textbox:

    enter image description here


    HOW TO

    I’ve used :before on the inner container div (with 7px collapsed borders, three transparents, one white) to create a triangle where the borders intersect themselves, then i placed it just over the textbox with absolute positioning (overriding the textbox’s border to “attach” the triangle to it).

    According to this question, rgba should be used instead of transparent in order to prevent Firefox to put an unwanted border;

    Then, for coloring the border in a cross-browser way, i used :after to place an identical triangle, with the same size, with a color similar(*) to the textbox’s borders, just 1px higher (in top position) than the white triangle.

    At this point, i’ve used z-index property to place the gray triangle UNDER the white triangle, so that only 1px of its “body” (the bottom border) would have been visible.

    This created the gray border to the arrow.

    (*) I’ve chosen a color a bit darker than the textbox’s borders one, because of the “brightening” effect generated by mixing the two triangles.
    With #888 instead of #bbb, the result is acceptable and more similar to the original color than using the original color itself.

    Here is the commented code and the demo:


    DEMO

    http://jsfiddle.net/syTDv/


    HTML

    <div id="fbContainer">
       <div class="facebookTriangle">  
          <input type="text" id="facebookTextbox" value="some text"/>
       </div>
    </div>
    

    CSS

    body {
        padding: 30px;
    }
    
    
    /* With this container you can put the textbox anywhere on the page,
     without disturbing the triangles's absolute positioning */
    #fbContainer{
      position: relative;
    }
    
    
    /* some adjustments to make the textbox more pretty */
    #facebookTextbox{   
       border: 1px solid #bbb !important;
       padding: 5px;
       color: gray;
       font-size: 1em;
       width: 200px;
    }
    
    
    /* block element needed to apply :before and :after */
    .facebookTriangle{
      height: 30px;
      padding-top: 10px;
    }
    
    
    /* white triangle */
    /* collapsing borders (because of the empty content) 
       creates four triangles, three transparents and one coloured, 
       the bottom one */    
    .facebookTriangle:before {
      content: '';
      border-style: solid;
      border-width: 7px;
      border-color: rgba(255,255,255,0) rgba(255,255,255,0) 
                    white rgba(255,255,255,0);
      top: -3px;
      position: absolute;
      left: 7px;
      z-index: 2; /* stay in front */
    }
    
    
    /* gray triangle */
    /* used as border for white triangle */
    .facebookTriangle:after {
      content: '';
      border-style: solid;
      border-width: 7px;
      border-color: rgba(255,255,255,0) rgba(255,255,255,0) 
                    #888 rgba(255,255,255,0);  
      top: -4px;
      position: absolute;
      left: 7px;
      z-index: 1; /* stay behind */
    }
    

    Hope that helps…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically I need to choose one so that, I can get familiar with it
I have a UI problem with some CSS that I was hoping to get
Can get all triples with value null in specific field? All people with date_of_birth
We can get class Class object by 3 methods: MyClass.class obj.getClass Class.forName(className) I don't
I can get the file path with: (message (file-name-directory (or buffer-file-name load-file-name))) But if
I can get this to work: [<DllImport(user32.dll)>] extern bool GetClientRect(nativeint, RECT*) let getClientRect hwnd
You can get the nodes of the document object of an <iframe> with the
You can get underground processes by ps ux I am searching a way to
You can get a list of databases using PRAGMA database_list or a list of
I can get the current selected row in this way: private void DataGridView1_CellContentClick(object sender,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.