1/** 2 * @license 3 * Copyright The Closure Library Authors. 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/** 8 * @fileoverview Common CSS class name constants. 9 */ 10 11goog.provide('goog.ui.INLINE_BLOCK_CLASSNAME'); 12 13 14/** 15 * CSS class name for applying the "display: inline-block" property in a 16 * cross-browser way. 17 * @type {string} 18 */ 19goog.ui.INLINE_BLOCK_CLASSNAME = goog.getCssName('goog-inline-block'); 20 21