1*54fd6939SJiyong Park/* 2*54fd6939SJiyong Park * Copyright (c) 2021, Arm Limited. All rights reserved. 3*54fd6939SJiyong Park * 4*54fd6939SJiyong Park * SPDX-License-Identifier: BSD-3-Clause 5*54fd6939SJiyong Park */ 6*54fd6939SJiyong Park 7*54fd6939SJiyong Park/* 8*54fd6939SJiyong Park * Set the white-space property of tables to normal. 9*54fd6939SJiyong Park * With this setting sequences of whitespace inside 10*54fd6939SJiyong Park * a table will collapse into a single whitespace, 11*54fd6939SJiyong Park * and text will wrap when necessary. 12*54fd6939SJiyong Park */ 13*54fd6939SJiyong Park.wy-table-responsive table td { 14*54fd6939SJiyong Parkwhite-space: normal; 15*54fd6939SJiyong Park} 16