Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
1/20
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)
1/20

Levis Hidden Buttons Ribcage Straight Ankle Jeans (Buy 2 Free Shipping)

$38.99
$79.98
Save $40.99
ColorMedium Wash
Please select a color
Inseam
Please select a inseam
Size
Please select a size
Quantity
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
SKU: LVSSK1001
Weight: 0kg
Barcode:

Product Details

Buy two and get $5 off(BUY MORE SAVE MORE)

Petite:  Inseam: 29 / Reg:  Inseam: 31 /  Tall:  Inseam: 33


Our highest high rise yet. Our Ribcage Straight jeans—with their soaring 12-inch rise—have become a hip-slimming. waist-defining. leg-lengthening obsession.

This fit will show off your figure and make you feel as amazing as you look. Fit that celebrates every curve.


  • A versatile fit with a flattering high-rise
  • Finished with a classic straight leg
  • Hits at the ankle
  • A waist-defining. leg-lengthening obsession
  • Breathable. Light. This garment was made with lightweight cotton to keep you looking good and feeling comfortable.

Built-in button tummy control panel


Slim you out without sacrificing stretch or comfort. 
They feature tummy control technology that sucks you in and smooths you out in all the right places. Make a statement with their slim bootcut silhouette!


Measurements:

  • Petite:  Inseam: 29
  • Reg:  Inseam: 31
  • Tall:  Inseam: 33
Composition & Care:
  • 99% Cotton
  • Denim
  • Stretch
  • Zip fly
  • 5-pocket styling
  • Wash your jeans once every 10 wears at most; this increases their lifespan and saves natural resources.Machine wash cold. Do not bleach. Tumble dry medium. Hot iron if needed. Dry cleaning possible. Wash inside out with like colors


All jeans fit differently. We fit check them for you!  All jeans fit differently and sizing cannot be consistent between pairs due to several reasons including the fabrication and specific style of each jean.  We fit check every pair of jeans on women of all shapes and sizes and our sizing advice is very accurate. We pride ourselves on our low return rate because we want you to love the fit as much as we do.