Open In App

HTTP headers | Content-Length

Last Updated : 31 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

HTTP headers are used to pass additional information in HTTP request or HTTP response. HTTP Content-Length entity-header is used to indicate the size of entity-body in decimal no of octets i.e. bytes and sent it to the recipient. It is a forbidden header name. Basically it is the number of bytes of data in the body of the request or response. The body comes after the blank line below the headers.

Syntax:

Content-Length: <length>

Directive: This headers accepts a single directive mentioned above and described below:

  • Length: It defines the length of entity-body in decimal no of octets or say bytes.

Example:

content-length: 6553
content-length: 54138

To check this Content-Length in action go to Inspect Element -> Network check the request header for Content-Length like below, Content-Length is highlighted.

Supported Browsers: The browsers compatible with HTTP headers Content-length are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads